forked from PriceFallin/cordova-plugin-twilio-video
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
48 lines (45 loc) · 2.56 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
<?xml version='1.0' encoding='utf-8'?>
<plugin
id="cordova-plugin-twilio-video"
version="0.2.0"
xmlns="http://apache.org/cordova/ns/plugins/1.0">
<name>Twilio video conversation plugin</name>
<license></license>
<js-module name="twilio-solution" src="conversation.js">
<clobbers target="cordova.videoconversation" />
</js-module>
<engines>
<engine name="cordova" version=">=4.0.0" />
</engines>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="VideoConversationPlugin">
<param name="ios-package" value="TwilioVideoPlugin" />
</feature>
</config-file>
<source-file src="src/ios/TwilioVideoPlugin.m" />
<source-file src="src/ios/TwilioVideoViewController.m" />
<header-file src="src/ios/TwilioVideoViewController.h" />
<resource-file src="src/ios/Resources/TwilioVideo.storyboard" target="Resources/TwilioVideo.storyboard" />
<resource-file src="src/ios/Resources/end-call-ios-white-33px.png" target="Resources/end-call-ios-white-33px.png" />
<resource-file src="src/ios/Resources/no-mic-ios-white-33px.png" target="Resources/no-mic-ios-white-33px.png" />
<resource-file src="src/ios/Resources/no-video-ios-white-33px.png" target="Resources/no-video-ios-white-33px.png" />
<resource-file src="src/ios/Resources/switch-camera-ios-white-33px.png" target="Resources/switch-camera-ios-white-33px.png" />
<!-- The earlier iOS OS that this pod supports is 8.1, we can also update to 1.4.3 -->
<pods-config ios-min-version="9.0" use-frameworks="true">
<!-- If you are facing 'spec' issues on "ionic cordova platform add ios" un commit this section, here I am specificying which
github path the specs for the needed Twilio v1 SDK is located -->
<!-- <source url="https://github.com/CocoaPods/Specs"/>
<source url="https://github.com/CocoaPods/Specs/tree/master/Specs/1/d/9/TwilioVideo/'"/> -->
</pods-config>
<pod name="TwilioVideo" version="2.5.6" />
<preference name="CAMERA_USAGE_DESCRIPTION" default="Camera" />
<config-file target="*-Info.plist" parent="NSCameraUsageDescription">
<string>$CAMERA_USAGE_DESCRIPTION</string>
</config-file>
<preference name="MICROPHONE_USAGE_DESCRIPTION" default="Microphone"/>
<config-file target="*-Info.plist" parent="NSMicrophoneUsageDescription">
<string>$MICROPHONE_USAGE_DESCRIPTION</string>
</config-file>
</platform>
</plugin>