This repository has been archived by the owner on Jul 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.xml
40 lines (33 loc) · 1.75 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
id="phonegap-plugin-csdk-typekit"
version="0.0.1">
<name>phonegap-plugin-csdk-typekit</name>
<js-module src="www/Typekit.js" name="Typekit">
<clobbers target="CSDKTypekit" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="CSDKTypekit" >
<param name="android-package" value="com.adobe.phonegap.csdk.Typekit"/>
</feature>
</config-file>
<framework src="com.adobe.creativesdk.foundation:auth:0.9.1186+"/>
<framework src="com.adobe.creativesdk:typekit:0.9.1186+"/>
<source-file src="src/android/Typekit.java" target-dir="src/com/adobe/phonegap/csdk" />
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="CSDKTypekit">
<param name="ios-package" value="CDVTypekit"/>
</feature>
</config-file>
<header-file src="src/ios/CDVTypekit.h" />
<source-file src="src/ios/CDVTypekit.m" />
<resource-file src="src/ios/AdobeCreativeSDKFrameworks/AdobeCreativeSDKTypekit.framework/Versions/A/Resources/AdobeCreativeSDKTypekitResources.bundle"/>
<framework src="src/ios/AdobeCreativeSDKFrameworks/AdobeCreativeSDKTypekit.framework" custom="true"/>
<resource-file src="src/ios/AdobeCreativeSDKFrameworks/AdobeCreativeSDKCommonUX.framework/Versions/A/Resources/AdobeCreativeSDKCommonUXResources.bundle"/>
<framework src="src/ios/AdobeCreativeSDKFrameworks/AdobeCreativeSDKCommonUX.framework" custom="true"/>
<framework src="libsqlite3.tbd"/>
</platform>
</plugin>