Re: [android-beginners] What does `adb install' do under the hood?

2010-04-08 Thread Xavier Ducrohet
adb install does the equivalent of: adb push yourapp.apk /some/temp/location/yourapp.apk adb shell pm install /some/temp/location/yourapp.apk adb shell rm /some/temp/location/yourapp.apk regarding (3), I think the package Manager monitor changes in those folder and is able to automatically

[android-beginners] What does `adb install' do under the hood?

2010-04-07 Thread Chi Zhang
Hi everybody, this is my first post ever. I hope this is not a stupid question :-) I noticed that there are three ways to install an app in an android device: 1. adb install some-app 2. adb shell pm install some-app 3. you can manually push the apk file to /system/app or /data/app Are there