Skip to content

Commit

Permalink
Declare package visibility to query URL handler apps (#38377)
Browse files Browse the repository at this point in the history
* Declare package visibility to query URL handler apps

* Update changelog
  • Loading branch information
hypest authored Feb 1, 2022
1 parent 4453635 commit c25a166
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/react-native-bridge/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,13 @@

## Unreleased

- [***] Fix launching video preview on Android 11+ [#38377]


## 1.70.0

- [**] Fix Android handling of Hebrew and Indonesian translations [#37565]

## 1.70.1

- [***] Bump minimum deployment target to iOS 13.0 [#27577]
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.wordpress.mobile.ReactNativeGutenbergBridge">

<queries>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="http"/>
</intent>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="https"/>
</intent>
</queries>

<application>
<activity
android:name=".GutenbergWebViewActivity"
Expand Down

0 comments on commit c25a166

Please sign in to comment.