Skip to content

Commit

Permalink
Release 2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Ville Orkas committed Sep 12, 2016
1 parent 3c7c57d commit 6a754f4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 29 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion "24.0.1"
buildToolsVersion "24.0.2"

defaultConfig {
applicationId "com.unity3d.ads.example"
minSdkVersion 9
targetSdkVersion 24
versionCode = 2003
versionName = "2.0.3"
targetSdkVersion 23
versionCode = 2004
versionName = "2.0.4"
}
buildTypes {
release {
Expand Down
8 changes: 4 additions & 4 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'

android {
compileSdkVersion 24
buildToolsVersion "24.0.1"
buildToolsVersion "24.0.2"
com.android.ddmlib.DdmPreferences.setLogLevel("verbose")
com.android.ddmlib.DdmPreferences.setTimeOut(10 * 60000)

Expand All @@ -11,9 +11,9 @@ android {

defaultConfig {
minSdkVersion 9
targetSdkVersion 24
versionCode = 2003
versionName = "2.0.3"
targetSdkVersion 23
versionCode = 2004
versionName = "2.0.4"

setProperty("archivesBaseName", "unity-ads")

Expand Down
4 changes: 2 additions & 2 deletions lib/src/main/java/com/unity3d/ads/adunit/AdUnitActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -345,9 +345,9 @@ private void createVideoPlayer () {

private void destroyVideoPlayer () {
if (VideoPlayer.getVideoPlayerView() != null) {
ViewUtilities.removeViewFromParent(VideoPlayer.getVideoPlayerView());
VideoPlayer.getVideoPlayerView().stopPlayback();
VideoPlayer.getVideoPlayerView().stopVideoProgressTimer();
VideoPlayer.getVideoPlayerView().stopPlayback();
ViewUtilities.removeViewFromParent(VideoPlayer.getVideoPlayerView());
}

VideoPlayer.setVideoPlayerView(null);
Expand Down
19 changes: 0 additions & 19 deletions unity-ads-android.iml

This file was deleted.

0 comments on commit 6a754f4

Please sign in to comment.