Browse Source

incorporate one of the BUILDING steps directly into the file

android-15-check
Trent Larson 1 week ago
parent
commit
cead308800
  1. 14
      BUILDING.md
  2. 2
      android/app/src/main/AndroidManifest.xml

14
BUILDING.md

@ -473,17 +473,3 @@ At play.google.com/console:
- Save, go to "Publishing Overview" as prompted, and click "Send changes for review".
- Note that if you add testers, you have to go to "Publishing Overview" and send those changes or your (closed) testers won't see it.
## First-time Android Configuration for deep links
You must add the following intent filter to the `android/app/src/main/AndroidManifest.xml` file:
```xml
<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" />
<data android:scheme="timesafari" />
</intent-filter>
```

2
android/app/src/main/AndroidManifest.xml

@ -19,7 +19,7 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<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" />

Loading…
Cancel
Save