forked from phiamo/cordova-plugin-inappupdatemanager
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathplugin.xml
28 lines (28 loc) · 1.35 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
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-inappupdatemanager" version="1.0.0" xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>InAppUpdateManager</name>
<DESCRIPTION>A cordova plugin to support in-app updates in Android and IOS.</DESCRIPTION>
<js-module name="InAppUpdateManager" src="www/InAppUpdateManager.js">
<clobbers target="cordova.plugins.InAppUpdateManager" />
</js-module>
<platform name="android">
<framework src="com.google.android.play:core:1.9.1" />
<config-file parent="/*" target="res/xml/config.xml">
<feature name="InAppUpdateManager">
<param name="android-package" value="InAppUpdateManager.InAppUpdateManager" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml">
</config-file>
<source-file src="src/android/InAppUpdateManager.java" target-dir="src/InAppUpdateManager" />
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="InAppUpdateManager">
<param name="ios-package" value="InAppUpdateManager" />
</feature>
</config-file>
<source-file src="src/ios/InAppUpdateManager.swift" />
</platform>
</plugin>