mirror of
https://github.com/M66B/NetGuard.git
synced 2024-12-27 18:30:09 +00:00
Write external storage permission is required for before Android 5 :-(
This commit is contained in:
parent
93f368cf4a
commit
5c59740dd7
2 changed files with 2 additions and 0 deletions
|
@ -194,6 +194,7 @@ Permissions
|
||||||
* ACCESS_WIFI_STATE: to detect Wi-Fi network changes
|
* ACCESS_WIFI_STATE: to detect Wi-Fi network changes
|
||||||
* RECEIVE_BOOT_COMPLETED: to start the firewall when booting the device
|
* RECEIVE_BOOT_COMPLETED: to start the firewall when booting the device
|
||||||
* WAKE_LOCK: to reliably reload rules in the background on connectivity changes
|
* WAKE_LOCK: to reliably reload rules in the background on connectivity changes
|
||||||
|
* WRITE_EXTERNAL_STORAGE: to export settings on Android versions before 5.0 (Lollipop)
|
||||||
* com.android.vending.BILLING: to accept donations via in-app billing
|
* com.android.vending.BILLING: to accept donations via in-app billing
|
||||||
|
|
||||||
Support
|
Support
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||||||
<uses-permission android:name="com.android.vending.BILLING" />
|
<uses-permission android:name="com.android.vending.BILLING" />
|
||||||
<uses-permission android:name="android.permission.INTERNET" />
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||||
<!-- http://developer.android.com/guide/topics/security/permissions.html#normal-dangerous -->
|
<!-- http://developer.android.com/guide/topics/security/permissions.html#normal-dangerous -->
|
||||||
|
|
||||||
<uses-feature
|
<uses-feature
|
||||||
|
|
Loading…
Reference in a new issue