File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -42,11 +42,11 @@ public DexFactory(Context context)
42
42
43
43
ApplicationInfo applicationInfo = this .context .getApplicationInfo ();
44
44
this .dexPath = applicationInfo .dataDir + File .separator + SECONDARY_DEX_FOLDER_NAME + File .separator ;
45
- this .odexPath = applicationInfo . dataDir + File . separator + SECONDARY_DEX_FOLDER_NAME + File . separator + "odex" + File .separator ;
45
+ this .odexPath = this . dexPath + "odex" + File .separator ;
46
46
this .proxyGenerator = new ProxyGenerator (dexPath );
47
47
ProxyGenerator .IsLogEnabled = Platform .IsLogEnabled ;
48
48
49
- File odexDir = new File (dexPath + File . separator + "odex" + File . separator );
49
+ File odexDir = new File (this . odexPath );
50
50
odexDir .mkdirs ();
51
51
52
52
this .updateDexThumbAndPurgeCache ();
You can’t perform that action at this time.
0 commit comments