forked from oracle/cordova-plugin-emm-app-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
46 lines (38 loc) · 1.53 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2016 Oracle and/or its affiliates
The Universal Permissive License (UPL), Version 1.0
-->
<plugin 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"
id="cordova-plugin-AppConfig"
version="1.1.3">
<name>EmmAppConfig</name>
<description>Cordova AppConfig.org Plugin</description>
<license>UPL 1.0</license>
<keywords>cordova,emmappconfig,appconfig</keywords>
<repo>https://github.com/audioeng/cordova-plugin-emm-app-config.git</repo>
<js-module src="www/emmappconfig.js" name="emmappconfig">
<clobbers target="cordova.plugins.EmmAppConfig" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="EmmAppConfig" >
<param name="android-package" value="oracle.jet.emm.EmmAppConfig"/>
</feature>
</config-file>
<source-file src="src/android/EmmAppConfig.java" target-dir="src/oracle/jet/emm" />
</platform>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="EmmAppConfig">
<param name="ios-package" value="JETEmmAppConfig"/>
</feature>
</config-file>
<header-file src="src/ios/JETEmmAppConfig.h" />
<source-file src="src/ios/JETEmmAppConfig.m" />
</platform>
</plugin>