-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathplugin.xml
More file actions
24 lines (19 loc) · 943 Bytes
/
plugin.xml
File metadata and controls
24 lines (19 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-devoptionschecker"
version="1.0.0"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>DevOptionsChecker</name>
<js-module name="DevOptionsChecker" src="www/DevOptionsChecker.js">
<clobbers target="cordova.plugins.devoptionschecker" />
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="DevOptionsChecker">
<param name="android-package" value="com.plugin.dev.DevOptionsChecker" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml" />
<source-file src="src/android/DevOptionsChecker.java" target-dir="src/com/plugin/dev/DevOptionsChecker" />
</platform>
</plugin>