Skip to content

Commit

Permalink
fix(#308): Add autoverify=true to AndroidManifest.xml file (#353)
Browse files Browse the repository at this point in the history
This makes the Android OS verify the domains inside the <intent> in the AndroidManifest.xml files and opens the domains in the app directly.
  • Loading branch information
sugat009 authored Mar 28, 2024
1 parent 889fd84 commit bfbb902
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
<activity android:name="AppUrlIntentActivity"
android:launchMode="singleInstance"
android:exported="true">
<intent-filter>
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
Expand Down
2 changes: 1 addition & 1 deletion src/moh_kenya_echis/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<activity android:name="AppUrlIntentActivity"
android:launchMode="singleInstance"
android:exported="true">
<intent-filter>
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
Expand Down

0 comments on commit bfbb902

Please sign in to comment.