Download the Android SDK Add android to your path Check available android platforms android list targets Start a Project android create project –target <target_id> –name <appName> target_id – is the target available in android list targets Build the project ant debug you may need to install apache ant Compile? adb install bin/Package_Name-debug.apk Emulate (Need a […]
Author: me
The Zen of Python
Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than complicated. Flat is better than nested. Sparse is better than dense. Readability counts. Special cases aren’t special enough to break the rules. Although practicality beats purity. Errors should never pass silently. Unless explicitly silenced. In the […]
So you’ve unpacked the sdk and updated and installed all the required libraries, apis and extras with: ./android sdk Now to add all the tools and commands to your path to be accessible wherever you are: vim ~/.bashrc Add the following lines: export PATH=${PATH}:~/utils/android-sdk-linux/tools export PATH=${PATH}:~/utils/android-sdk-linux/platform-tools Remember to restart terminal
What is Jenkins? A continuous integration tool written in Java. Continuous integration is the process of merging development work among multiple developers. It also serves to automate unit testing and I am certain other types of testing in test driven development. To simplify all that, it is build automation and in my opinion an automated […]
Demystifying Unix File Permissions
Never really understood what was going on with Linux File Permissions and chmod? If you understand binary then this will be a piece of cake. Here is a simple blog post to demystify Unix File Permissions: Ever seen: -rwxr-xr– 1 dgerman staff 823 Dec 16 15:03 findPhoneNumbers.sh Operations: r – Read w – Write x – […]