V vercettyDev Active Member Licensed User Longtime User Jul 16, 2019 #1 How can I execute parts of my code at runtime. I searched about DexClassLoader, but I did not find anything related to B4A
How can I execute parts of my code at runtime. I searched about DexClassLoader, but I did not find anything related to B4A
DonManfred Expert Licensed User Longtime User Jul 16, 2019 #2 Amanda Sura said: How can I execute parts of my code at runtime. Click to expand... You run code through calling a method. You apk already includes all your code. You can not load any dex (other compiled sources) at runtime. It is not possible. Last edited: Jul 16, 2019 Upvote 0
Amanda Sura said: How can I execute parts of my code at runtime. Click to expand... You run code through calling a method. You apk already includes all your code. You can not load any dex (other compiled sources) at runtime. It is not possible.
V vercettyDev Active Member Licensed User Longtime User Jul 23, 2019 #3 Yes it is possible using DexClassLoader https://stackoverflow.com/questions/2903260/android-using-dexclassloader-to-load-apk-file Last edited: Sep 30, 2022 Upvote 0
Yes it is possible using DexClassLoader https://stackoverflow.com/questions/2903260/android-using-dexclassloader-to-load-apk-file
DonManfred Expert Licensed User Longtime User Jul 24, 2019 #4 Amanda Sura said: Yes it is possible using DexClassLoader https://stackoverflow.com/questions/2903260/android-using-dexclassloader-to-load-apk-file Click to expand... - the SO post is from 2010. Are you sure it will work in 2019? - None of the answers is marked as Solution. Upvote 0
Amanda Sura said: Yes it is possible using DexClassLoader https://stackoverflow.com/questions/2903260/android-using-dexclassloader-to-load-apk-file Click to expand... - the SO post is from 2010. Are you sure it will work in 2019? - None of the answers is marked as Solution.