aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/jogamp/common/os/android
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2019-12-26 04:19:36 +0100
committerSven Gothel <[email protected]>2019-12-26 04:19:36 +0100
commitfaa37334e2912e02cb58e738570a127cc6402b37 (patch)
treeb85e8d79a457544771c1f65159b4ccbc03c30721 /src/java/jogamp/common/os/android
parent6e98be1a1bc819b47e2cc52eb35d23a7489fdf1b (diff)
Bug 1417 - Android: Context.MODE_WORLD_READABLE causes SecurityException on API >= 24, use Context.MODE_PRIVATE for temp cache
Diffstat (limited to 'src/java/jogamp/common/os/android')
-rw-r--r--src/java/jogamp/common/os/android/AndroidUtilsImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/jogamp/common/os/android/AndroidUtilsImpl.java b/src/java/jogamp/common/os/android/AndroidUtilsImpl.java
index 8dcdd6f..14c627d 100644
--- a/src/java/jogamp/common/os/android/AndroidUtilsImpl.java
+++ b/src/java/jogamp/common/os/android/AndroidUtilsImpl.java
@@ -75,7 +75,7 @@ public class AndroidUtilsImpl {
{
final Context ctx = StaticContext.getContext();
if(null != ctx) {
- 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
if(null==tmpRoot|| !tmpRoot.isDirectory() || !tmpRoot.canWrite()) {
throw new RuntimeException("Not a writable directory: '"+tmpRoot+"', retrieved Android static context");
}