Noticed in Android 4.4, Google removed one of internal functions in class, DexFile:
native private static int openDexFile(byte[] fileContents);
which is capable of performing loading dex from byte-array without going through reading the dex file on disk, which has proven to be very useful
Anybody knows why this happens or if there is any other alternatives. Hopefully Google will put it back in the future release.
Thanks.
native private static int openDexFile(byte[] fileContents);
which is capable of performing loading dex from byte-array without going through reading the dex file on disk, which has proven to be very useful
Anybody knows why this happens or if there is any other alternatives. Hopefully Google will put it back in the future release.
Thanks.