-
Notifications
You must be signed in to change notification settings - Fork 3
/
plugin.xml
30 lines (26 loc) · 1.36 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 id="cordova-plugin-env" version="1.2.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:rim="http://www.blackberry.com/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android">
<name>cordova-plugin-env</name>
<description>Cordova Environment plugin</description>
<author>Erik Brommers</author>
<license>Apache-2.0</license>
<keywords>cordova,ecosystem:cordova,cordova-android,plugin,environment</keywords>
<repo>https://github.com/adapt-it/cordova-env.git</repo>
<issue>https://github.com/adapt-it/cordova-env/issues</issue>
<!-- expose our API under navigator.Env -->
<js-module name="env" src="www/env.js">
<clobbers target="navigator.Env"/>
</js-module>
<!-- android -->
<platform name="android">
<config-file target="config.xml" parent="/*">
<feature name="Env">
<param name="android-package" value="org.adaptit.cordova.environment.Env"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
</config-file>
<source-file src="src/android/Env.java" target-dir="src/org/adaptit/cordova/Env"/>
</platform>
</plugin>