diff options
Diffstat (limited to 'src/java/jogamp/android/launcher')
-rw-r--r-- | src/java/jogamp/android/launcher/LauncherTempFileCache.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/jogamp/android/launcher/LauncherTempFileCache.java b/src/java/jogamp/android/launcher/LauncherTempFileCache.java index 6836dd9..7860bba 100644 --- a/src/java/jogamp/android/launcher/LauncherTempFileCache.java +++ b/src/java/jogamp/android/launcher/LauncherTempFileCache.java @@ -145,7 +145,7 @@ public class LauncherTempFileCache { synchronized (System.out) { // Get the name of the tmpbase directory. { - final File tmpRoot = ctx.getDir("temp", Context.MODE_WORLD_READABLE); + final File tmpRoot = ctx.getDir("temp", Context.MODE_PRIVATE); // Context.MODE_WORLD_READABLE -> SecurityException API >= 24 tmpBaseDir = new File(new File(tmpRoot, tmpSubDir), tmpDirPrefix); } tmpRootPropValue = System.getProperty(tmpRootPropName); |