forked from kartagis/cordova-plugin-progressview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
58 lines (42 loc) · 2 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
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="de.neofonie.cordova.plugin.progressview"
version="3.0.1">
<name>Cordova ProgressView</name>
<description>Cordova/PhoneGap extension for displaying a native, determinate progress dialog view. Uses MRProgress in iOS and native UI controls in Android.</description>
<license>MIT</license>
<keywords>activity,indicator,loading,progress,loadingbar,mrprogress,mbprogresshud,spinner,throbber</keywords>
<repo>https://github.com/sidneys/cordova-plugin-progressview.git</repo>
<issue>https://github.com/sidneys/cordova-plugin-progressview/issues</issue>
<engines>
<engine name="cordova" version=">=3.5"/>
</engines>
<js-module src="www/progressview.js" name="progressview">
<clobbers target="window.plugins.ProgressView"/>
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="ProgressView">
<param name="ios-package" value="ProgressView"/>
</feature>
</config-file>
<framework src="Foundation.framework"/>
<framework src="UIKit.framework"/>
<framework src="CoreGraphics.framework"/>
<framework src="QuartzCore.framework"/>
<framework src="Accelerate.framework"/>
<framework src="src/ios/M13Progress.framework" custom="true"/>
<header-file src="src/ios/ProgressView.h"/>
<source-file src="src/ios/ProgressView.m"/>
</platform>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="ProgressView">
<param name="android-package" value="de.neofonie.cordova.plugin.progressview.ProgressView"/>
</feature>
</config-file>
<source-file src="src/android/ProgressView.java" target-dir="src/de/neofonie/cordova/plugin/progressview"/>
</platform>
</plugin>