The package name is located in /data/data folder. You can find the android app package name use android device monitor. 2.1 Use ADB Uninstall App Apk File Command. Use ADB To Uninstall Android Apps Apk File.
Click the android app icon to run it on the android emulator screen.Ģ.Run adb install apk file command as below to push android app into emulator /data/app directory.-r means force install.Ībove adb install apk file command will install the apk file into /data/local/tmp/ directory. To resolve this problem, you need to use adb install command with -r option to force install the apk files, we will introduce it below. This is bacause /system/app folder is read-only, you can not push files into this folder. failed to copy '/user/example.apk' to '/system/app/example.apk': Read-only file system. Usually, you can encounter below error messages.Pull android apk from device to local folder.Īdb pull /system/app/example.apk /user/app_bak Maybe overwrite the original app, so you had better use below command to backup the original app before operation.Use ADB To Install Android Apps Apk File.