forked from Telerik-Verified-Plugins/Leanplum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
47 lines (36 loc) · 1.54 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
<?xml version='1.0' encoding='utf-8'?>
<plugin id="com.telerik.leanplum" version="1.0.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>Leanplum</name>
<js-module name="Leanplum" src="www/Leanplum.js">
<clobbers target="Leanplum" />
</js-module>
<preference name="APP_ID" />
<preference name="DEVELOPMENT_KEY" />
<preference name="PRODUCTION_KEY" />
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="Leanplum">
<param name="ios-package" value="CDVLeanPlum" />
</feature>
</config-file>
<framework src="Security.framework"/>
<framework src="CFNetwork.framework"/>
<framework src="SystemConfiguration.framework"/>
<framework src="AdSupport.framework"/>
<source-file framework="true" src="lib/ios/LeanPlum.framework/libLeanPlum.a"/>
<header-file src="lib/ios/LeanPlum.framework/Headers/LeanPlum.h"/>
<header-file src="src/ios/CDVLeanPlum.h" />
<source-file src="src/ios/CDVLeanPlum.m" />
<header-file src="src/ios/AppDelegate+notification.h" />
<source-file src="src/ios/AppDelegate+notification.m" />
<config-file target="*-Info.plist" parent="APP_ID">
<string>$APP_ID</string>
</config-file>
<config-file target="*-Info.plist" parent="DEVELOPMENT_KEY">
<string>$DEVELOPMENT_KEY</string>
</config-file>
<config-file target="*-Info.plist" parent="PRODUCTION_KEY">
<string>$PRODUCTION_KEY</string>
</config-file>
</platform>
</plugin>