-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
29 lines (23 loc) · 1.13 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version='1.0' encoding='UTF-8'?>
<plugin id="cordova-plugin-quick-fix-svc" version="1.0.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>cordova-plugin-quick-fix-svc</name>
<author>Elderov Ali (info@cyberkatze.de)</author>
<description>Quick fix for SVC(SafaariViewController) for Android 11+</description>
<keywords>cordova,android,svc,SafaariViewController,plugin</keywords>
<license>MIT</license>
<repo>https://github.com/WuglyakBolgoink/cordova-plugin-quick-fix-svc</repo>
<issue>https://github.com/WuglyakBolgoink/cordova-plugin-quick-fix-svc/issues</issue>
<engines>
<engine name="cordova" version=">=10.0.0"/>
<engine name="cordova-android" version=">=10.0.0" />
</engines>
<platform name="android">
<config-file target="AndroidManifest.xml" parent="/manifest">
<queries>
<intent>
<action android:name="android.support.customtabs.action.CustomTabsService" />
</intent>
</queries>
</config-file>
</platform>
</plugin>