shankz
shankz

Reputation: 107

How to find the apk path on android?

I installed my android app(apk file) on my phone, when I go to my files: i can't find my com.myappnamefoler.net in folder(/sdcard/Android/data). is there a default path?

Upvotes: 1

Views: 28317

Answers (3)

Chris
Chris

Reputation: 249

If you saved the files in the folder provided by getFilesDir() , it will be in the folder /data/data/<your.package.name>/files in the root of your system, not on your sdcard. (To view this, your phone needs to be rooted)

If you saved the files in the folder provided by getExternalFilesDir(), it will be in the folder /sdcard/Android/data, /sdcard0/Android/data or a similar directory.

Upvotes: 0

Kani
Kani

Reputation: 179

You should find in /system/app or /data/app

Upvotes: 1

Keshav
Keshav

Reputation: 171

check in data/data/com.myappnamefoler.net

Upvotes: 0

Related Questions