This repository has been archived by the owner on Sep 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathplugin.xml
84 lines (66 loc) · 2.78 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="cordova-plugin-optimizely"
version="0.4.0">
<name>Optimizely Cordova Plugin</name>
<engines>
<engine name="cordova" version=">=3.4.0"/>
</engines>
<js-module src="www/code_blocks.js" name="code_blocks">
<runs/>
</js-module>
<js-module src="www/enums.js" name="enums">
<runs/>
</js-module>
<js-module src="www/goal_tracking.js" name="goal_tracking">
<runs/>
</js-module>
<js-module src="www/lib/lodash.js" name="lodash">
<runs/>
</js-module>
<js-module src="www/live_variables.js" name="live_variables">
<runs/>
</js-module>
<js-module src="www/native_mixin.js" name="native_mixin">
<runs/>
</js-module>
<js-module src="www/optimizely.js" name="Optimizely">
<clobbers target="optimizely" />
</js-module>
<dependency
id="es6-promise-plugin"
url="https://github.com/vstirbu/PromisesPlugin.git">
</dependency>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Optimizely">
<param name="android-package" value="com.optimizely.cordova.OptimizelyCordovaPlugin"/>
</feature>
</config-file>
<framework src="src/android/build-extras.gradle" custom="true" type="gradleReference" />
<source-file src="src/android/OptimizelyCordovaPlugin.java" target-dir="src/com/optimizely/cordova/"/>
<source-file src="src/android/OptimizelyCordovaLiveVariable.java" target-dir="src/com/optimizely/cordova/"/>
<source-file src="src/android/exceptions/InvalidVariableTypeException.java" target-dir="src/com/optimizely/cordova/exceptions"/>
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/widget">
<feature name="Optimizely">
<param name="ios-package" value="OptimizelyCordovaPlugin" />
</feature>
</config-file>
<header-file src="src/ios/OptimizelyCordovaPlugin.h" target-dir="OptimizelyCordovaPlugin"/>
<source-file src="src/ios/OptimizelyCordovaPlugin.m" target-dir="OptimizelyCordovaPlugin"/>
<header-file src="src/ios/OptimizelyCordovaLiveVariable.h" target-dir="OptimizelyCordovaLiveVariable"/>
<source-file src="src/ios/OptimizelyCordovaLiveVariable.m" target-dir="OptimizelyCordovaLiveVariable"/>
<framework src="src/ios/Optimizely.framework" custom="true" />
<framework src="libicucore.dylib" />
<framework src="libsqlite3.dylib" />
<framework src="AudioToolbox.framework" />
<framework src="CFNetwork.framework" />
<framework src="Foundation.framework" />
<framework src="MobileCoreServices.framework" />
<framework src="Security.framework" />
<framework src="SystemConfiguration.framework" />
<framework src="UIKit.framework" />
</platform>
</plugin>