Our application has three dexes in apk which was built by gradle with multidex feature.
After the application was installed,
Were the main dex and the second dex loaded by the same class loader?
How to check if the second( classes2.dex ) and the third was loaded completed or not? Can I check it in code dynamically?
Or can you guys introduce any related document about the procedure of class( or dex ) loading in Android? I am not familiar with this.
Thank you.