dexclassloader Questions
0
I am trying to learn dynamically loading classes (.dex/.jar) in Android. I assembled the basic ideas from tutorials and Stack Overflow questions (tutorial, this, and this), but I am failing to fulf...
Bibliotheca asked 24/5, 2021 at 6:58
2
Solved
I have succeeded in dynamically loading classes from a dex file in the following way
enter code here
File file = getDir("dex", 0);
DexClassLoader dexClassLoader = new DexClassLoader("/data/data/co...
Housewifely asked 10/2, 2018 at 1:21
2
After I upgraded to the 64-bit armeabi library and released the app to googleplay in bundle packaging, I encountered the following problems in googleplay crashes report page:
java.lang.RuntimeExce...
Fondly asked 22/8, 2019 at 1:55
2
For a long-term student project, i'm trying to develop a modular application with plugins. Specifically, we would have:
A master application where we could search, update, delete and run the plug...
Aerometer asked 28/11, 2012 at 20:13
1
Solved
I was wondering how Parallel Space app can duplicate and execute other apps without copying their APKs or running them under modified package names like other apps on Playstore do (e.g.: "com.whate...
Pia asked 10/1, 2017 at 13:35
1
It seems that the Android application class loader allows to reflectively acquire a reference to the public static field of a package-private class even from a different package (than the one the a...
Afterpiece asked 11/10, 2015 at 0:37
3
Solved
I am developing a application which automatically load class from external dex from external apk file (external apk file is stored in internal storage of application). The external apk file have cl...
Johnettajohnette asked 5/3, 2014 at 9:32
1
I am trying to produce a simple android application that can load a DEX file from the SD card at run-time.
The application has two activites. The first activity is a simple screen that has a butto...
Osgood asked 25/3, 2015 at 10:43
1
Solved
We have a large app that's always running into the dread method count limit. I've been asked to come up with a way to let it do much more, including supporting plugins. Looking for ways to unload c...
Jiujitsu asked 17/9, 2013 at 1:53
1
© 2022 - 2024 — McMap. All rights reserved.