-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
42 lines (36 loc) · 1.59 KB
/
plugin.xml
File metadata and controls
42 lines (36 loc) · 1.59 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-iovation" version="0.0.1">
<name>cordova-plugin-iovation</name>
<description>Cordova iovation plugin</description>
<engines>
<engine name="cordova" version=">= 3.0" />
</engines>
<js-module src="www/iovation.js" name="Iovation">
<clobbers target="window.Iovation" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Iovation">
<param name="android-package" value="org.apache.cordova.iovation.Iovation" />
</feature>
</config-file>
<source-file src="lib/android/deviceprint-release-2.2.0.aar" target-dir="libs" framework="true" />
<source-file src="src/android/Iovation.java" target-dir="src/org/apache/cordova/iovation"/>
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Iovation">
<param name="ios-package" value="Iovation" />
</feature>
</config-file>
<header-file src="src/ios/Iovation.h" />
<source-file src="src/ios/Iovation.m" />
<framework src="CoreTelephony.framework" />
<framework src="SystemConfiguration.framework" />
<framework src="ExternalAccessory.framework" />
<framework src="AdSupport.framework" />
<framework src="CoreLocation.framework" />
<framework src="lib/ios/iovation.framework" custom="true" />
</platform>
</plugin>