UNPKG

cordova-plugin-exoplayer

Version:

Media player for Cordova using Google's ExoPlayer framework

54 lines (43 loc) 2.84 kB
<?xml version="1.0" encoding="utf-8"?> <plugin xmlns="http://www.phonegap.com/ns/plugins/1.0" id="cordova-plugin-exoplayer" version="2.5.4"> <name>ExoPlayer</name> <description>Cordova Plugin implementing ExoPlayer video/audio player</description> <keywords>ecosystem:cordova,cordova-android,phonegap,cordova,ionic,android,exoplayer,exo,video,player</keywords> <license>MIT</license> <engines> <engine name="cordova-android" version=">=4.0.0"/> </engines> <asset src="www/exoplayer.js" target="js/exoplayer.js"/> <js-module src="www/exoplayer.js" name="ExoPlayer"> <clobbers target="ExoPlayer"/> </js-module> <platform name="android"> <framework src="com.google.android.exoplayer:exoplayer:2.6.1"/> <framework src="com.squareup.picasso:picasso:2.5.2"/> <config-file target="res/xml/config.xml" parent="/*"> <feature name="ExoPlayer"> <param name="android-package" value="co.frontyard.cordova.plugin.exoplayer.Plugin"/> </feature> </config-file> <source-file src="src/res/values/ids.xml" target-dir="res/values/"/> <source-file src="src/res/values/constants.xml" target-dir="res/values/"/> <source-file src="src/res/values/styles.xml" target-dir="res/values/"/> <source-file src="src/res/layout/exo_simple_player_view.xml" target-dir="res/layout/"/> <source-file src="src/res/layout/exo_playback_control_view.xml" target-dir="res/layout/"/> <source-file src="src/res/layout/exo_rounded_corners.xml" target-dir="res/layout/"/> <source-file src="src/res/drawable/fastforward.png" target-dir="res/drawable/"/> <source-file src="src/res/drawable/next.png" target-dir="res/drawable/"/> <source-file src="src/res/drawable/pause.png" target-dir="res/drawable/"/> <source-file src="src/res/drawable/play.png" target-dir="res/drawable/"/> <source-file src="src/res/drawable/previous.png" target-dir="res/drawable/"/> <source-file src="src/res/drawable/rewind.png" target-dir="res/drawable/"/> <source-file src="src/android/CallbackResponse.java" target-dir="src/co/frontyard/cordova/plugin/exoplayer/"/> <source-file src="src/android/Configuration.java" target-dir="src/co/frontyard/cordova/plugin/exoplayer/"/> <source-file src="src/android/LayoutProvider.java" target-dir="src/co/frontyard/cordova/plugin/exoplayer/"/> <source-file src="src/android/Payload.java" target-dir="src/co/frontyard/cordova/plugin/exoplayer/"/> <source-file src="src/android/Player.java" target-dir="src/co/frontyard/cordova/plugin/exoplayer/"/> <source-file src="src/android/Plugin.java" target-dir="src/co/frontyard/cordova/plugin/exoplayer/"/> </platform> </plugin>