Skip to content

Commit bfbb902

Browse files
authored
fix(#308): Add autoverify=true to AndroidManifest.xml file (#353)
This makes the Android OS verify the domains inside the <intent> in the AndroidManifest.xml files and opens the domains in the app directly.
1 parent 889fd84 commit bfbb902

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/AndroidManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
<activity android:name="AppUrlIntentActivity"
6666
android:launchMode="singleInstance"
6767
android:exported="true">
68-
<intent-filter>
68+
<intent-filter android:autoVerify="true">
6969
<action android:name="android.intent.action.VIEW" />
7070
<category android:name="android.intent.category.DEFAULT" />
7171
<category android:name="android.intent.category.BROWSABLE" />

src/moh_kenya_echis/AndroidManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<activity android:name="AppUrlIntentActivity"
99
android:launchMode="singleInstance"
1010
android:exported="true">
11-
<intent-filter>
11+
<intent-filter android:autoVerify="true">
1212
<action android:name="android.intent.action.VIEW" />
1313
<category android:name="android.intent.category.DEFAULT" />
1414
<category android:name="android.intent.category.BROWSABLE" />

0 commit comments

Comments
 (0)