1 Star 0 Fork 0

edui8/cordova-plugin-media

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
plugin.xml 3.74 KB
一键复制 编辑 原始数据 按行查看 历史
Jan Piotrowski 提交于 2019-06-27 17:38 . chore(release): 5.0.4-dev
<?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"
version="5.0.4-dev">
<name>Media</name>
<description>Cordova Media Plugin</description>
<license>Apache 2.0</license>
<keywords>cordova,media</keywords>
<repo>https://github.com/apache/cordova-plugin-media</repo>
<issue>https://github.com/apache/cordova-plugin-media/issues</issue>
<engines>
<engine name="cordova-android" version=">=6.3.0" />
</engines>
<dependency id="cordova-plugin-file" version="^6.0.0" />
<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" />
</platform>
<!-- ios -->
<platform name="ios">
<preference name="KEEP_AVAUDIOSESSION_ALWAYS_ACTIVE" default="NO" />
<config-file target="config.xml" parent="/*">
<feature name="Media">
<param name="ios-package" value="CDVSound" />
</feature>
<preference
name="KeepAVAudioSessionAlwaysActive"
value="$KEEP_AVAUDIOSESSION_ALWAYS_ACTIVE" />
</config-file>
<header-file src="src/ios/CDVSound.h" />
<source-file src="src/ios/CDVSound.m" />
</platform>
<!-- windows -->
<platform name="windows">
<js-module src="src/windows/MediaProxy.js" name="MediaProxy">
<runs />
</js-module>
<config-file target="package.appxmanifest" parent="/Package/Capabilities">
<DeviceCapability Name="microphone" />
</config-file>
</platform>
<!-- browser -->
<platform name="browser">
<js-module src="www/browser/Media.js" name="BrowserMedia">
<clobbers target="window.Media" />
</js-module>
</platform>
</plugin>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/edui8/cordova-plugin-media.git
git@gitee.com:edui8/cordova-plugin-media.git
edui8
cordova-plugin-media
cordova-plugin-media
master

搜索帮助