7

我有以下问题

  1. 请解释一下android应用程序的安装过程。
  2. 当我们安装 android 应用程序时,.apk 文件的临时文件夹位置是什么?

提前致谢

4

3 回答 3

4

APK被复制到root的/data/app。与apk相关的数据在/data/data/app_name中生成

搜索后,您可以在 StackExchange 上获得足够多的文章,例如:

https://android.stackexchange.com/questions/5147/the-installation-steps-of-android-package

Android: Understanding the APK installation process

于 2012-12-21T11:34:10.667 回答
2

预装的应用程序位于

/系统/应用

文件夹。用户安装的应用程序位于 /data/app。我猜你不能访问,除非你有一个根电话。我这里没有非 root 手机,但试试这个代码:

public class Testing extends Activity {
    private static final String TAG = "TEST";
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        File appsDir = new File("/data/app");

        String[] files = appsDir.list();

        for (int i = 0 ; i < files.length ; i++ ) {
            Log.d(TAG, "File: "+files[i]);

        }
    }

也可以观看此视频以了解 .apk 文件安装的工作流程

https://sites.google.com/site/io/inside-the-android-application-framework

于 2012-12-21T11:33:19.760 回答
0

System apps are located under director :

 /device/system/app
于 2015-12-07T05:26:54.603 回答