Add WAKE_LOCK permission

This might help with a potential crash on (some) Samsung phones

SEe #59
This commit is contained in:
Roland Geider
2021-07-17 13:35:45 +02:00
parent 56fa133fd0
commit df8beaa379
3 changed files with 3 additions and 1 deletions

View File

@@ -4,7 +4,7 @@
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<queries>
<intent>
<action android:name="android.intent.action.VIEW" />

View File

@@ -6,6 +6,7 @@
additional functionality it is fine to subclass or reimplement
FlutterApplication and put your custom class here. -->
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.INTERNET"/>
<queries>
<intent>

View File

@@ -3,5 +3,6 @@
<!-- Flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>