forked from vaenow/cordova-plugin-app-update
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
30 lines (28 loc) · 1.43 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
30
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-app-update" version="1.2.9">
<name>AppUpdate</name>
<description>Cordova App Update</description>
<license>Apache 2.0</license>
<keywords>cordova,app,auto,update,updater</keywords>
<dependency id="cordova-plugin-appversion" version="1.0.0" />
<js-module src="www/AppUpdate.js" name="AppUpdate">
<clobbers target="AppUpdate" />
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="AppUpdate">
<param name="android-package" value="com.vaenow.appupdate.android.CheckAppUpdate"/>
<param name="onload" value="true" /> <!-- Must Have -->
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
</config-file>
<source-file src="src/android" target-dir="src/com/vaenow/appupdate"/>
<source-file src="res/values/appupdate_strings.xml" target-dir="res/values"/>
<source-file src="res/layout/appupdate_progress.xml" target-dir="res/layout"/>
</platform>
</plugin>