TinyTut] - Removing Apps(*.apk-Files) from the Emulator
What you learn: You will learn how delete Applications (their *.apk-Files) from the Emulator
Difficulty: 1 of 5
Description:
Google itself got a pretty short explanation on removing *.apk-Files, but I've got sth. for you:
In the SDK's main directory (i.e. "C:/Programming/Android/SDK") there is the folder called "tools" --> Get into that folder. You need to start a console terminal/shell ("Start -> Run... -> type 'cmd'" for Windows PCs). Type-in sth. like the following command:
- Code: Select all
adb shell rm data/app/{myFile.apk}
For example if you want to uninstall "HelloAndroid.apk" you should type this:
- Code: Select all
adb shell rm data/app/HelloAndroid.apk
Regards,
plusminus







