Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ Do this:


## 7. Changelog
* 2.0.1 Make Chrome Custom Tabs work on Android 11. Thanks #179!
* 2.0.0 Support AndroidX
* 1.6.0 A few changes for Android. See [these closed issues](https://github.com/EddyVerbruggen/cordova-plugin-safariviewcontroller/milestone/7?closed=1).
* 1.5.3 Hidden tabs don't get removed on `hide()` (iOS). Thanks #104!
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-safariviewcontroller",
"version": "2.0.0",
"version": "2.0.1",
"description": "Forget InAppBrowser for iOS - this is way better for displaying read-only web content in your PhoneGap app.",
"cordova": {
"id": "cordova-plugin-safariviewcontroller",
Expand Down
11 changes: 10 additions & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='UTF-8'?>
<plugin
id="cordova-plugin-safariviewcontroller"
version="2.0.0"
version="2.0.1"
xmlns="http://apache.org/cordova/ns/plugins/1.0">

<name>SafariViewController</name>
Expand Down Expand Up @@ -44,6 +44,15 @@
<param name="onload" value="true" />
</feature>
</config-file>

<config-file target="AndroidManifest.xml" parent="/manifest">
<queries>
<intent>
<action android:name="android.support.customtabs.action.CustomTabsService" />
</intent>
</queries>
</config-file>

<framework src="build/android/SafariViewController-java18.gradle" custom="true" type="gradleReference" />
<framework src="androidx.browser:browser:1.3.0" />

Expand Down