Hi,

According to my knowledge,
We have 2 types of Android app,
1. System app: this locate in /system/app folder of Android phone
2. Normal app: this locate in /data/app folder of Android phone
We also have 2 ways to install app on Android phone:
1. using adb push it into /system/app, it will be installed as a system
app, later, you will have to do all the steps to uninstall it:
        - adb shell rm the apk
        - adb uninstall the package
2. using adb install, this will treat your app as normal app and put it
in /data/app folder with the name in format: app.package.apk, you can
either uninstall it directly using adb uninstall or rm the apk first.
Note that sometimes we may need to specify a .keystore to properly
install or uninstall an app, especially widgets.

Regards,
Nam

On Thu, 2010-06-10 at 13:46 -0700, DeAviator wrote:
> I was going through the threads related to apk files and most of the
> people had different opinion on .apk file installation in emulator.
> Even I was stuck for a few days and then I found a nice tutorial and
> wanted to share this and of course there might be other ways but it
> was clean first time itself.
> http://www.botskool.com/geeks/how-install-apk-files-android-windows-sdk-emulator
> http://www.botskool.com/geeks/how-uninstall-apk-files-android-windows-sdk-emulator
> 
> If anyone find any other method do post it here. Help other save time.
> 


-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Reply via email to