How can I push my application package to Android emulator \"/system/app\" folder?
I\'ve already tried to use:
\"adb push myApk.apk /system/app\"
and it giv
You need to run adb remount
first, then it should let you adb push
to /system
folders
Use below commands from your super user ADB shell. Copy the APK of your APP into your SD card or Internal Storage.
$ adb shell
$ su
$ mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
$ cp /sdcard/<Your_APK_PATH> /system/app/file_name_comes_here.apk
$ chmod 644 /system/app/<YourAPK>.apk
Then reboot the device