
How to add a new formula to homebrew package manager
I recently added adb-enhanced to the Homebrew package manager. Here are some of my learnings and future tips to smoothen up the process.

I recently added adb-enhanced to the Homebrew package manager. Here are some of my learnings and future tips to smoothen up the process.

For android projects, some engineers use Android Studio (new), some use Eclipse with ADT (old), few like me still savor command line, this blog post is about handling (building, installing and testing) android projects from command line. To create android project Sh 1 2 3 4 5 6 7 8 $ android create project \ --target 4 \ --name TestAndroidApp \ --path ./test_android_app \ --activity Main \ --package net.ashishb.TestAndroidApp \ --gradle --gradle-version 1.0.+ ... After changing to directory test_android_app (cd test_android_app), fix a bug ...