Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3507738
D6320.id21137.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D6320.id21137.diff
View Options
diff --git a/native/android/app/src/debug/AndroidManifest.xml b/native/android/app/src/debug/AndroidManifest.xml
--- a/native/android/app/src/debug/AndroidManifest.xml
+++ b/native/android/app/src/debug/AndroidManifest.xml
@@ -10,5 +10,19 @@
tools:targetApi="28"
tools:ignore="GoogleAppIndexingWarning">
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" android:exported="false" />
+ <!-- this is configured according to
+ https://github.com/expo/fyi/blob/main/setup-android-uri-scheme.md
+ -->
+ <activity
+ android:name=".MainActivity"
+ android:exported="true"
+ android:launchMode="singleTask">
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+ <category android:name="android.intent.category.BROWSABLE" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <data android:scheme="comm"/>
+ </intent-filter>
+ </activity>
</application>
</manifest>
diff --git a/native/android/app/src/main/AndroidManifest.xml b/native/android/app/src/main/AndroidManifest.xml
--- a/native/android/app/src/main/AndroidManifest.xml
+++ b/native/android/app/src/main/AndroidManifest.xml
@@ -39,13 +39,7 @@
android:windowSoftInputMode="adjustResize"
android:exported="true"
android:screenOrientation="portrait"
- >
- <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" />
- </intent-filter>
- </activity>
+ />
<activity
android:name=".SplashActivity"
android:launchMode="singleTop"
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Dec 21, 9:36 PM (20 h, 59 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2689268
Default Alt Text
D6320.id21137.diff (1 KB)
Attached To
Mode
D6320: [native] Add URI scheme to debug AndroidManifest.xml
Attached
Detach File
Event Timeline
Log In to Comment