forked from fuseelements/TestFlightPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
59 lines (45 loc) · 2.09 KB
/
plugin.xml
File metadata and controls
59 lines (45 loc) · 2.09 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="com.testflightapp.cordova-plugin"
version="2.0.0">
<name>TestFlight SDK Plugin</name>
<description>Cordova plugin for the TestFlight SDK 2.0</description>
<license>Apache 2.0 License</license>
<engines>
<engine name="cordova" version=">=2.9.0" />
<engine name="cordova-android" version=">=3.1.0" />
</engines>
<js-module src="www/testflight.js" name="TestFlight">
<clobbers target="TestFlight" />
</js-module>
<access origin="*.testflightapp.com" />
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/widget">
<feature name="TestFlightSDK">
<param name="ios-package" value="CDVTestFlight"/>
</feature>
</config-file>
<header-file src="src/ios/TestFlight.h" />
<header-file src="src/ios/TestFlight+AsyncLogging.h" />
<header-file src="src/ios/TestFlight+ManualSessions.h" />
<header-file src="src/ios/CDVTestFlight.h"/>
<source-file src="src/ios/CDVTestFlight.m" />
<source-file src="src/ios/libTestFlight.a" framework="true"/>
<framework src="libz.dylib" />
</platform>
<!-- android -->
<platform name="android">
<config-file target="config.xml" parent="/widget">
<feature name="TestFlightSDK">
<param name="android-package" value="jp.wizcorp.phonegap.plugin.testflight.TestFlightPlugin"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</config-file>
<source-file src="src/android/example/platforms/android/src/jp/wizcorp/phonegap/plugin/testflight/TestFlightPlugin.java"
target-dir="src/jp/wizcorp/phonegap/plugin/testflight" />
<source-file src="src/android/example/platforms/android/libs/TestFlightLib.jar" target-dir="libs" />
</platform>
</plugin>