Tips to get APK files of installed apps on Android?

Tram Ho

Many times we need to get the APK file of an application that has a cool feature on the Play Store but it is not available on APK download sites like APKCombo, APKPure ? In this article, I will show you tips to get these files.

Where are the APK files of the installed application located? All APK files of the apps that you install on your phone, whether from the official Google, Samsung, Huawei store or from an internet source will be saved in the /data/app folder. This directory is completely accessible without root privileges. The permissions on this directory are specified as rwxrwx–x. Does this mean you can read content from it but lack the ability to see what directories and subfiles it has? So to access it, you need to know the names of the files you want to access. Android package manager will help you get the name of the APK files that are saved for each package.

Get a list of package names ?

These package names are the package names of the application. To get a list of the package names of all the applications installed on the device, run the following command

Note: For simplicity, only one device is allowed to be connected to the computer and debug mode is enabled.

Now a list of package names will appear:

The package name of the application will appear in this list of package names.

Get the path to the APK file?

Assuming you need to get the APK of the package name com.google.android.youtube , then you can type the command:

Now the APK of the application will appear. Usually you only pay attention to the base.apk file, which is the first file, the following files are related to config such as SoC structure, language, screen resolution:

Drag the APK file to the computer?

Now that you know the path of the APK, you can simply drag it to the terminal’s current directory with the following command:

Ok, now try to type ls base.apk command. Tada, it’s already on your computer.

Wish you success and find joy in your work.


Source: Tips to get APK files of installed apps on Android?

Share the news now

Source : Viblo