forked from Taracque/cordova-plugin-opentok
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.xml
97 lines (89 loc) · 4.26 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
85
86
87
88
89
90
91
92
93
94
95
96
97
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="bidwrangler-opentok-plugin"
version="1.0.18">
<name>OpenTok Cordova Plugin</name>
<description>Add live video streaming to your Cordova Application</description>
<license>Apache-2.0</license>
<keywords>opentok,tokbox</keywords>
<engines>
<engine name="cordova" version=">=7.0.0"/>
<engine name="cordova-android" version=">=7.0.0"/>
<engine name="cordova-ios" version=">=6.3.0"/>
</engines>
<platform name="android">
<framework src="build-extras.gradle" custom="true" type="gradleReference" />
<asset src="www/opentok.js" target="opentok.js" />
<source-file src="src/android/com/tokbox/cordova/OTDefaultAudioDevice.java" target-dir="src/com/tokbox/cordova/" />
<source-file src="src/android/com/tokbox/cordova/OpenTokAndroidPlugin.java" target-dir="src/com/tokbox/cordova/" />
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
<uses-feature android:name="android.hardware.camera" android:required="true" />
<uses-feature android:name="android.hardware.camera.autofocus" android:required="true" />
</config-file>
<!-- copy opentok sdk -->
<source-file src="src/android/libs/opentok-android-sdk-2.16.1.aar" target-dir="opentok-libs/" />
<resource-file src="src/android/libs/opentok-android-sdk-2.16.1.aar" target="opentok-libs/opentok-android-sdk-2.16.1.aar" />
<config-file target="config.xml" parent="/*">
<feature name="OpenTokPlugin">
<param name="android-package" value="com.tokbox.cordova.OpenTokAndroidPlugin"/>
</feature>
</config-file>
</platform>
<!-- ios -->
<platform name="ios">
<asset src="www/opentok.js" target="opentok.js" />
<header-file src="src/ios/OpenTokPlugin.h" />
<source-file src="src/ios/OpenTokPlugin.m" />
<header-file src="src/ios/OTDefaultAudioDevice.h" />
<source-file src="src/ios/OTDefaultAudioDevice.m" />
<framework src="libstdc++.dylib" />
<framework src="libc++.dylib" />
<framework src="libxml2.dylib" />
<framework src="libsqlite3.dylib" />
<framework src="libpthread.dylib" />
<framework src="VideoToolbox.framework" />
<framework src="AudioToolbox.framework" />
<framework src="CoreData.framework" />
<framework src="AVFoundation.framework" />
<framework src="CoreGraphics.framework" />
<framework src="CoreMedia.framework" />
<framework src="CoreVideo.framework" />
<framework src="OpenGLES.framework" />
<framework src="SystemConfiguration.framework" />
<framework src="CoreTelephony.framework" />
<framework src="GLKit.framework" />
<framework src="EventKit.framework" />
<framework src="QuartzCore.framework" />
<framework src="MapKit.framework" />
<framework src="UIKit.framework" />
<framework src="Foundation.framework" />
<framework src="Security.framework" />
<framework src="CFNetwork.framework" />
<podspec>
<pods use-frameworks="true">
<pod name="OTXCFramework" spec="~> 2.24.2" />
</pods>
</podspec>
<!-- Adopts project's config.xml to include the OpenTokPlugin and domain whitelists -->
<config-file target="config.xml" parent="/*/plugins">
<feature name="OpenTokPlugin">
<param name="ios-package" value="OpenTokPlugin"/>
</feature>
</config-file>
<config-file target="config.xml" parent="/*">
<access origin="*" />
</config-file>
<config-file target="*-Info.plist" parent="NSCameraUsageDescription">
<string>This lets you make video calls.</string>
</config-file>
<config-file target="*-Info.plist" parent="NSMicrophoneUsageDescription">
<string>This lets you make voice and video calls.</string>
</config-file>
</platform>
</plugin>