android - Can we have an app with both an .odex file outside the apk and also classes.dex file inside the apk? -
i have android application, contain .odex file , 3 classes.dex files . large application .i not have source code app .
my understaning : when application optimized move application code outside apk in file *.odex .
self answered :
we can specify option , ‘nostripping’ "local_dex_preopt := false " if pre-optimization should not strip classes.dex file apk or jar file. file stripped since it’s no longer needed after pre-optimization, last option necessary allow third-party apk signatures remain valid.
so have both classes.dex , *.odex files created .
Comments
Post a Comment