We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f727e7 commit 7935f7fCopy full SHA for 7935f7f
1 file changed
build/project-template-gradle/src/main/java/com/tns/RuntimeHelper.java
@@ -84,6 +84,14 @@ public void initRuntime()
84
String appName = app.getPackageName();
85
File rootDir = new File(app.getApplicationInfo().dataDir);
86
File appDir = app.getFilesDir();
87
+
88
+ try
89
+ {
90
+ appDir = appDir.getCanonicalFile();
91
+ }
92
+ catch (IOException e1)
93
94
95
96
ClassLoader classLoader = app.getClassLoader();
97
File dexDir = new File(rootDir, "code_cache/secondary-dexes");
0 commit comments