Skip to content

Commit aa73767

Browse files
committed
fix: remove unnecessary browsable category
1 parent caeb5f7 commit aa73767

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

docusaurus/docs/reactnative/basics/troubleshooting.mdx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,16 +217,15 @@ Opening an external link doesn't work without permissions on `targetSdkVersion`
217217
<queries>
218218
<intent>
219219
<action android:name="android.intent.action.VIEW" />
220-
<category android:name="android.intent.category.BROWSABLE" />
221220
<data android:scheme="http" android:host="*" />
222221
</intent>
223222
<intent>
224223
<action android:name="android.intent.action.VIEW" />
225-
<category android:name="android.intent.category.BROWSABLE" />
226224
<data android:scheme="https" android:host="*" />
227225
</intent>
228226
</queries>
229227
```
228+
230229
## GIF and WebP not displaying
231230

232231
### Android

examples/SampleApp/android/app/src/main/AndroidManifest.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@
99
<queries>
1010
<intent>
1111
<action android:name="android.intent.action.VIEW" />
12-
<category android:name="android.intent.category.BROWSABLE" />
1312
<data android:scheme="http" android:host="*" />
1413
</intent>
1514
<intent>
1615
<action android:name="android.intent.action.VIEW" />
17-
<category android:name="android.intent.category.BROWSABLE" />
1816
<data android:scheme="https" android:host="*" />
1917
</intent>
2018
</queries>

examples/TypeScriptMessaging/android/app/src/main/AndroidManifest.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@
99
<queries>
1010
<intent>
1111
<action android:name="android.intent.action.VIEW" />
12-
<category android:name="android.intent.category.BROWSABLE" />
1312
<data android:scheme="http" android:host="*" />
1413
</intent>
1514
<intent>
1615
<action android:name="android.intent.action.VIEW" />
17-
<category android:name="android.intent.category.BROWSABLE" />
1816
<data android:scheme="https" android:host="*" />
1917
</intent>
2018
</queries>

0 commit comments

Comments
 (0)