|
@@ -90,9 +90,6 @@ The Defold engine requires a number of different permissions for all engine feat
|
|
|
### android.permission.INTERNET and android.permission.ACCESS_NETWORK_STATE (Protection level: normal)
|
|
|
Allows applications to open network sockets and access information about networks. These permission are needed for internet access. ([Android official docs](https://developer.android.com/reference/android/Manifest.permission#INTERNET)) and ([Android official docs](https://developer.android.com/reference/android/Manifest.permission#ACCESS_NETWORK_STATE)).
|
|
|
|
|
|
-### android.permission.WRITE_EXTERNAL_STORAGE (Protection level: dangerous)
|
|
|
-Allows an application to write to external storage. Starting in API level 19, this permission is not required to read/write files in your application-specific directories returned by Context.getExternalFilesDir(String) and Context.getExternalCacheDir(). This permission is needed if you intend to save/load files from disk (using io.* or sys.save/load) outside of the folder provided by [sys.get_save_file()](/ref/sys/#sys.get_save_file:application_id-file_name) and have `android:minSdkVersion` set to less than 19 in the Android manifest. ([Android official docs](https://developer.android.com/reference/android/Manifest.permission#WRITE_EXTERNAL_STORAGE)).
|
|
|
-
|
|
|
### android.permission.WAKE_LOCK (Protection level: normal)
|
|
|
Allows using PowerManager WakeLocks to keep processor from sleeping or screen from dimming. This permission is needed to temporarily prevent the device from sleeping while receiving a push notification. ([Android official docs](https://developer.android.com/reference/android/Manifest.permission#WAKE_LOCK))
|
|
|
|