Skip to content

Commit 33ef541

Browse files
committed
feat: android:exported for activities
1 parent 0d21e9e commit 33ef541

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

android/app/src/main/AndroidManifest.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,23 +29,24 @@
2929
<activity
3030
android:name=".bootsplash.BootSplashActivity"
3131
android:theme="@style/BootTheme"
32-
android:launchMode="singleTask">
32+
android:launchMode="singleTask"
33+
android:exported="true">
3334

34-
<intent-filter>
35+
<intent-filter android:autoVerify="true">
3536
<action android:name="android.intent.action.MAIN" />
3637
<category android:name="android.intent.category.LAUNCHER" />
3738
</intent-filter>
3839

3940
<!-- Custom URI handlers. Used to intercept Urban Airship deep links. -->
40-
<intent-filter>
41+
<intent-filter android:autoVerify="true">
4142
<action android:name="android.intent.action.VIEW"/>
4243
<category android:name="android.intent.category.DEFAULT"/>
4344
<category android:name="android.intent.category.BROWSABLE"/>
4445
<data android:scheme="new-expensify"/>
4546
</intent-filter>
4647

4748
<!-- Web URL handlers. Used to intercept web links. -->
48-
<intent-filter>
49+
<intent-filter android:autoVerify="true">
4950
<action android:name="android.intent.action.VIEW"/>
5051
<category android:name="android.intent.category.DEFAULT"/>
5152
<category android:name="android.intent.category.BROWSABLE"/>

0 commit comments

Comments
 (0)