From c169a9b306dcdc588de78f2273ba51155cb65fe9 Mon Sep 17 00:00:00 2001 From: Volker Richert <v.richert@addmore.de> Date: Wed, 30 Nov 2016 14:39:02 +0100 Subject: [PATCH] moving permission to the right place. THX @pogman --- app/src/main/AndroidManifest.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 7b0921f..f7d7185 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -18,6 +18,9 @@ <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.USB_PERMISSION" /> + <!-- allow to disable battery optimization --> + <uses-permission-sdk-23 android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" /> + <application android:name=".UploaderApplication" android:allowBackup="true" @@ -26,8 +29,6 @@ android:supportsRtl="true" android:theme="@style/AppTheme"> - <!-- allow to disable battery optimization --> - <uses-permission-sdk-23 android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" /> <!-- I have set screenOrientation to "portrait" to avoid the restart of AsyncTasks when you rotate the phone --> <activity -- GitLab