• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Root Extracting an APK fom rooted Dinc

My Dinc is 2.2 rooted s-off. I have an app on the phone that I would like to extract it as an apk for future use. Can anyone offer me some instructions on getting this done?
 
i use mybackup pro. when you do a backup it saves all the .apks in a backup folder.
titanium might work the same way. not sure how root explorer would do it.
 
i use mybackup pro. when you do a backup it saves all the .apks in a backup folder.
titanium might work the same way. not sure how root explorer would do it.

You can use Root Explorer to copy it to the sdcard and change the persmissions on it. Then copy it to your computer via the usb cable with the sdcard mounted.
 
to answer the OP original question though it can be done through adb.

cd to tool of androidSDK folder.

adb pull xxxxx.apk /system/app/xxxxx.apk

for data

adb pull xxxxx.apk /data/app/xxxxx.apk
 
I must be missing something. In system/app non of my installed .apks are there.
I do see them in data/app but obviously this is just the data file.
 
No. IIRC, system/app is all of the prebuilt system apps. These are apps you cannot uninstall. Apps like CityID or VZNavigator or HTC Email go here. data/app is for user installed apps. That is the apk you want.
 
Back
Top Bottom