This repository has been archived by the owner on Jul 17, 2024. It is now read-only.
forked from fuseelements/TestFlightPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
41 lines (32 loc) · 1.43 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="com.shazron.cordova.testflight"
version="1.0.0">
<name>TestFlight SDK</name>
<engines>
<engine name="cordova" version=">=2.2.0" />
</engines>
<access origin="*.testflightapp.com" />
<asset src="www/testflight.js" target="testflight.js" />
<!-- ios -->
<platform name="ios">
<!-- Only for Cordova 2.2.0 -->
<plugins-plist key="TestFlightSDK" string="CDVTestFlight" />
<!-- Only for Cordova 2.3.0, 2.4.0 -->
<!--
<config-file target="config.xml" parent="/cordova/plugins">
<plugin name="TestFlightSDK" value="CDVTestFlight"/>
</config-file>
-->
<!-- For Cordova >= 2.5.0 -->
<config-file target="config.xml" parent="/widget/plugins">
<plugin name="TestFlightSDK" value="CDVTestFlight"/>
</config-file>
<!-- Note: the ios src is based off src/ios implicitly -->
<header-file src="TestFlight1.1/TestFlight.h" target-dir="TestFlightPlugin/TestFlight1.1" />
<header-file src="CDVTestFlight.h" target-dir="TestFlightPlugin" />
<source-file src="CDVTestFlight.m" target-dir="TestFlightPlugin" />
<source-file src="TestFlight1.1/libTestFlight.a" target-dir="TestFlightPlugin/TestFlight1.1" />
<framework src="libz.dylib" />
</platform>
</plugin>