Skip to content

Commit

Permalink
- bugfix - cloning a unit did not also copy over the unit manager
Browse files Browse the repository at this point in the history
- added support for multiple renderers. By default, VeePlay ships with two default renderers, MediaPlayerRenderer (used automatically for 4.0.x devices) and ExoPlayerRenderer(used automatically for 4.1+ devices)
- APSMediaUnit objects now hold a renderer string property. In order to explicitly set a renderer, use the static rendererIdentifier string of the renderer class.
- bugfix - transitioning to full screen and then changing orientation could cause an exception
- this version is a release candidate. Altough it was extensively tested over the past few weeks, it should be tested with each implementation before deploying into production
  • Loading branch information
andreimarinescu committed Apr 5, 2015
1 parent 2f5d123 commit 27dfea4
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions AppscendVastPlayer/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.appscend.vastplayer"
android:versionCode="1923"
android:versionName="1.9.23"
android:versionCode="1924"
android:versionName="1.9.24"
android:installLocation="auto">
<uses-sdk android:minSdkVersion="13"/>
<application></application>
Expand Down
4 changes: 2 additions & 2 deletions AppscendVastPlayer/bin/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.appscend.vastplayer"
android:versionCode="1923"
android:versionName="1.9.23"
android:versionCode="1924"
android:versionName="1.9.24"
android:installLocation="auto">
<uses-sdk android:minSdkVersion="13"/>
<application></application>
Expand Down
Binary file modified AppscendVastPlayer/bin/appscendvastplayer.jar
Binary file not shown.
Binary file modified AppscendVastPlayer/libs/appscendvastplayer.jar
Binary file not shown.
Binary file added AppscendVastPlayer/libs/exoplayer-general.jar
Binary file not shown.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
1.9.24 (2.0.0 RC1)
==================
- bugfix - cloning a unit did not also copy over the unit manager
- added support for multiple renderers. By default, VeePlay ships with two default renderers, MediaPlayerRenderer (used automatically for 4.0.x devices) and ExoPlayerRenderer(used automatically for 4.1+ devices)
- APSMediaUnit objects now hold a renderer string property. In order to explicitly set a renderer, use the static rendererIdentifier string of the renderer class.
- bugfix - transitioning to full screen and then changing orientation could cause an exception
- this version is a release candidate. Altough it was extensively tested over the past few weeks, it should be tested with each implementation before deploying into production

1.9.23
======
- bugfix - finishing the player during playback might cause a crash
Expand Down

0 comments on commit 27dfea4

Please sign in to comment.