forked from apache/cordova-plugin-media
-
Notifications
You must be signed in to change notification settings - Fork 37
/
plugin.xml
86 lines (71 loc) · 3.6 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-media-with-compression"
version="2.3.2">
<name>Media With Compression: Alpha Software Edition</name>
<description>Cordova Media Plugin with MPEG 4 audio compression for iOS and Android</description>
<license>Apache 2.0</license>
<keywords>cordova, media, audio compression</keywords>
<repo>https://github.com/remoorejr/cordova-plugin-media-with-compression.git</repo>
<!-- <issue>https://issues.apache.org/jira/browse/CB/component/12320647</issue> -->
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<dependency id="cordova-plugin-file" version=">=4.3.3" />
<js-module src="www/MediaError.js" name="MediaError">
<clobbers target="window.MediaError" />
</js-module>
<js-module src="www/Media.js" name="Media">
<clobbers target="window.Media" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Media" >
<param name="android-package" value="org.apache.cordova.media.AudioHandler"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
</config-file>
<source-file src="src/android/AudioHandler.java" target-dir="src/org/apache/cordova/media" />
<source-file src="src/android/AudioPlayer.java" target-dir="src/org/apache/cordova/media" />
<source-file src="src/android/FileHelper.java" target-dir="src/org/apache/cordova/media" />
<source-file src="src/android/mp4ParserWrapper.java" target-dir="src/org/apache/cordova/media" />
<lib-file src="src/android/isoparser-1.1.17.jar" />
<lib-file src="src/android/aspectjrt-1.8.8.jar" />
</platform>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Media">
<param name="ios-package" value="CDVSound" />
</feature>
</config-file>
<header-file src="src/ios/CDVSound.h" />
<source-file src="src/ios/CDVSound.m" />
<config-file target="*-Info.plist" parent="NSMicrophoneUsageDescription">
<string>This app requires access to the microphone to record audio.</string>
</config-file>
</platform>
</plugin>