Tips for Android developer: install & uninstall Android applications
As Android developer, if you want to install Android applications into the Android emulator, you can use the adb command:
adb install xxx.apk
where xxx.apk is the Android application. Otherwise, if you want to uninstall the Android applications, use:
adb shell rm /data/app/xxx.apk
Note the apk name maybe not same, you can use the:
adb shell ls /data/app
to find the name of the Android applications which you want to delete.
Related Android Apps:
- Tips for Android developer: SQLite Database
- Tips for Android developer: Logcat
- Tips for Android developer: Project contains errors
- Tips for Android developer: An SDK Target must be specified
- Tips for Android developer: failed to copy file to system
- Tips for Android developer: “Conversion to Dalvik format failed: Unable to execute dex: null”
- Tips for Android developer: Android emulator appearance standard
- Tips for Android developer: Android source code
- Open Source Android Apps for Developers: Eyes-Free (Speech Enabled Eyes-Free Android Applications)
- Tips for Android developer: Android SDK tools PATH setting