Skip to content

Commit 7906915

Browse files
jhotmannDocMarty84
authored andcommitted
Inability to open entries in browser
After updating to the Android 12 Beta, it is no longer possible to open entries or links in the browser. Adding this query fixed it. Tested on Android 11 and 12 Beta. See flutter/plugins#4006 Closes DocMarty84#9 Fixes DocMarty84#10
1 parent f391a1e commit 7906915

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

android/app/src/main/AndroidManifest.xml

+6
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,10 @@
3030
<uses-permission android:name="android.permission.INTERNET"/>
3131
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
3232
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
33+
<queries>
34+
<intent>
35+
<action android:name="android.intent.action.VIEW" />
36+
<data android:scheme="https" />
37+
</intent>
38+
</queries>
3339
</manifest>

0 commit comments

Comments
 (0)