I run the app from android studio on my phone. Now im curious where i can find my apk on my phone.
I got countless answers on where to find the apk on the pc, but i want to know where it builds the apk on my phone.
I run the app from android studio on my phone. Now im curious where i can find my apk on my phone.
I got countless answers on where to find the apk on the pc, but i want to know where it builds the apk on my phone.
You can pull the apk with adb, something like:
adb pull /data/app/com.example.someapp-2.apk path/to/desired/destination
Check this question for more info: How do I get an apk file from an Android device?
You could run this commands on console to find it:
adb shell pm list packages # In order to find needed package name
adb shell pm path com.yourpackage # show where is apk for package
You can't find apk on the your android device.
But you can use application like a "LuckyPatcher" on the android phone. enter image description here
Click on your application in LuckyPatcher->choose instrument->create Backup. Application notify about save .apk file and file path.