-
Notifications
You must be signed in to change notification settings - Fork 61
/
plugin.xml
45 lines (39 loc) · 1.8 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-progressindicator"
version="1.2.0">
<engines>
<engine name="cordova" version=">=3.0.0"/>
</engines>
<name>Progress Indicator</name>
<description>Progress Indicator plugin for Cordova 3.X that allows you to show a loading spinner in your Cordova's app.</description>
<author>Paolo Bernasconi</author>
<keywords>progress,indicator,activity,loading,load,progressindicator</keywords>
<license>Apache 2.0 License</license>
<repo>https://github.com/pbernasconi/cordova-progressIndicator.git</repo>
<js-module src="www/progressIndicator.js" name="ProgressIndicator">
<clobbers target="ProgressIndicator"/>
</js-module>
<!-- iOS -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="ProgressIndicator">
<param name="ios-package" value="ProgressIndicator"/>
</feature>
</config-file>
<header-file src="src/ios/MBProgressHUD.h"/>
<source-file src="src/ios/MBProgressHUD.m"/>
<header-file src="src/ios/ProgressIndicator.h"/>
<source-file src="src/ios/ProgressIndicator.m"/>
<resource-file src="src/ios/ProgressIndicator.bundle" />
</platform>
<!-- Android -->
<platform name="android">
<config-file target="app/src/main/res/xml/config.xml" parent="/*">
<feature name="ProgressIndicator">
<param name="android-package" value="org.apache.cordova.progressindicator.ProgressIndicator"/>
</feature>
</config-file>
<source-file src="src/android/ProgressIndicator.java" target-dir="src/org/apache/cordova/progressindicator"/>
</platform>
</plugin>