diff options
author | pacien | 2019-03-25 03:36:35 +0100 |
---|---|---|
committer | pacien | 2019-03-25 03:36:35 +0100 |
commit | df340e61f01537c34a177662c281cb4f58bf37d8 (patch) | |
tree | a410a5f278c43200973763706890044c93425ea9 | |
parent | b43bdea667ce27740acf1f6eaa3d7f103c503bc8 (diff) | |
download | tincapp-df340e61f01537c34a177662c281cb4f58bf37d8.tar.gz |
workaround for broken file permsissions on some Android ROMs
github ref: closes #79
-rw-r--r-- | app/src/main/AndroidManifest.xml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 70839b7..073ef4e 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml | |||
@@ -2,7 +2,7 @@ | |||
2 | 2 | ||
3 | <!-- | 3 | <!-- |
4 | * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon | 4 | * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon |
5 | * Copyright (C) 2017-2018 Pacien TRAN-GIRARD | 5 | * Copyright (C) 2017-2019 Pacien TRAN-GIRARD |
6 | * | 6 | * |
7 | * This program is free software: you can redistribute it and/or modify | 7 | * This program is free software: you can redistribute it and/or modify |
8 | * it under the terms of the GNU General Public License as published by | 8 | * it under the terms of the GNU General Public License as published by |
@@ -24,6 +24,9 @@ | |||
24 | 24 | ||
25 | <uses-permission android:name="android.permission.INTERNET"/> | 25 | <uses-permission android:name="android.permission.INTERNET"/> |
26 | 26 | ||
27 | <!-- workaround for broken file permissions on some Android ROMs --> | ||
28 | <uses-permission-sdk-23 android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | ||
29 | |||
27 | <application | 30 | <application |
28 | android:name="org.pacien.tincapp.context.App" | 31 | android:name="org.pacien.tincapp.context.App" |
29 | android:allowBackup="false" | 32 | android:allowBackup="false" |