Skip to content

Commit

Permalink
fix: missing permission
Browse files Browse the repository at this point in the history
Solves the problem:
```
Google Api Error: Invalid request - You must let us know whether your app uses any full-screen intent permissions - Retrying..
```
  • Loading branch information
bonomat committed Jul 31, 2024
1 parent 21ae75f commit 7ce0d3a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions mobile/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT" tools:node="remove" />

<application
android:label="@string/app_name"
Expand Down

0 comments on commit 7ce0d3a

Please sign in to comment.