-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
43 lines (31 loc) · 1.54 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.nativeutils"
version="1.0.0">
<name>CDVNativeUtils</name>
<description>Native Utils for Cordova Apps</description>
<license>Private</license>
<keywords>phonegap,native,android,ios</keywords>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<dependency id="org.apache.cordova.dialogs" />
<js-module src="www/NativeUtils.js" name="NativeUtils">
<clobbers target="plugins.nativeUtils" />
</js-module>
<platform name="android">
<!--<framework src="com.android.support:appcompat-v7:22.2.0"/>-->
<source-file src="src/android/NativeUtils.java" target-dir="src/com/nativeutils" />
<source-file src="src/android/res/layout/dialog.xml" target-dir="res/layout" />
<source-file src="src/android/res/layout/dialog_button.xml" target-dir="res/layout" />
<source-file src="src/android/res/layout/dialog_input.xml" target-dir="res/layout" />
<source-file src="src/android/res/drawable/dialog_button.xml" target-dir="res/drawable" />
<config-file target="AndroidManifest.xml" parent="/manifest/application"></config-file>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="NativeUtils">
<param name="android-package" value="com.nativeutils.NativeUtils"/>
</feature>
</config-file>
</platform>
</plugin>