Android- Using DexClassLoader to load apk file

后端 未结 3 1397
礼貌的吻别
礼貌的吻别 2020-12-02 12:38

I\'ve hit a bit of a wall. Any help would be appreciated. I have an app that I want to use DexClassLoader to load another apk file.

Here is my code:

         


        
3条回答
  •  情话喂你
    2020-12-02 13:20

    You can't do that. Even if you're able to access classes from external file, Android still does not know them. And you don't run activities directly, but by requesting Android to run them, so they have to be registered/installed into system.

提交回复
热议问题