diff --git a/README.md b/README.md index 6980bf54c0b242488ce69415b2541c289a6515be..a28cb96b79963a165d92b1a9b75e4eb6d0b766e6 100644 --- a/README.md +++ b/README.md @@ -21,17 +21,17 @@ allprojects { dependencies { # required, enough for most devices. - compile 'tv.danmaku.ijk.media:ijkplayer-java:0.7.0' - compile 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.7.0' + compile 'tv.danmaku.ijk.media:ijkplayer-java:0.7.1' + compile 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.7.1' # Other ABIs: optional - compile 'tv.danmaku.ijk.media:ijkplayer-armv5:0.7.0' - compile 'tv.danmaku.ijk.media:ijkplayer-arm64:0.7.0' - compile 'tv.danmaku.ijk.media:ijkplayer-x86:0.7.0' - compile 'tv.danmaku.ijk.media:ijkplayer-x86_64:0.7.0' + compile 'tv.danmaku.ijk.media:ijkplayer-armv5:0.7.1' + compile 'tv.danmaku.ijk.media:ijkplayer-arm64:0.7.1' + compile 'tv.danmaku.ijk.media:ijkplayer-x86:0.7.1' + compile 'tv.danmaku.ijk.media:ijkplayer-x86_64:0.7.1' # ExoPlayer as IMediaPlayer: optional, experimental - compile 'tv.danmaku.ijk.media:ijkplayer-exo:0.7.0' + compile 'tv.danmaku.ijk.media:ijkplayer-exo:0.7.1' } ``` - iOS @@ -137,7 +137,7 @@ sudo dpkg-reconfigure dash ``` git clone https://github.com/Bilibili/ijkplayer.git ijkplayer-android cd ijkplayer-android -git checkout -B latest k0.7.0 +git checkout -B latest k0.7.1 ./init-android.sh @@ -191,7 +191,7 @@ cd .. ``` git clone https://github.com/Bilibili/ijkplayer.git ijkplayer-ios cd ijkplayer-ios -git checkout -B latest k0.7.0 +git checkout -B latest k0.7.1 ./init-ios.sh diff --git a/android/ijkplayer/build.gradle b/android/ijkplayer/build.gradle index 04477a2477e59c25148f6a6c9acf0f5c0638cec4..9f1c2279b705df1fb2796738ea4e3844e454f517 100644 --- a/android/ijkplayer/build.gradle +++ b/android/ijkplayer/build.gradle @@ -26,8 +26,8 @@ ext { targetSdkVersion = 23 - versionCode = 700000 - versionName = "0.7.0" + versionCode = 700100 + versionName = "0.7.1" } wrapper { diff --git a/android/ijkplayer/gradle.properties b/android/ijkplayer/gradle.properties index 077e37021599ecd60d4461ce6290fc31fce04d6d..90fe94f368a9e4f7e696b81566cff821f8aa41fa 100644 --- a/android/ijkplayer/gradle.properties +++ b/android/ijkplayer/gradle.properties @@ -17,8 +17,8 @@ # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # org.gradle.parallel=true -VERSION_NAME=0.7.0 -VERSION_CODE=700000 +VERSION_NAME=0.7.1 +VERSION_CODE=700100 GROUP=tv.danmaku.ijk.media # http://central.sonatype.org/pages/requirements.html diff --git a/android/ijkplayer/ijkplayer-example/build.gradle b/android/ijkplayer/ijkplayer-example/build.gradle index 2a9f604d570a21a2c7c1a1235be9c83462660c20..07f280674f9bffe18c91910172f27c3840385fbc 100644 --- a/android/ijkplayer/ijkplayer-example/build.gradle +++ b/android/ijkplayer/ijkplayer-example/build.gradle @@ -54,18 +54,18 @@ dependencies { all64Compile project(':ijkplayer-x86') all64Compile project(':ijkplayer-x86_64') - // compile 'tv.danmaku.ijk.media:ijkplayer-java:0.7.0' - // compile 'tv.danmaku.ijk.media:ijkplayer-exo:0.7.0' + // compile 'tv.danmaku.ijk.media:ijkplayer-java:0.7.1' + // compile 'tv.danmaku.ijk.media:ijkplayer-exo:0.7.1' - // all32Compile 'tv.danmaku.ijk.media:ijkplayer-armv5:0.7.0' - // all32Compile 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.7.0' - // all32Compile 'tv.danmaku.ijk.media:ijkplayer-x86:0.7.0' + // all32Compile 'tv.danmaku.ijk.media:ijkplayer-armv5:0.7.1' + // all32Compile 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.7.1' + // all32Compile 'tv.danmaku.ijk.media:ijkplayer-x86:0.7.1' - // all64Compile 'tv.danmaku.ijk.media:ijkplayer-armv5:0.7.0' - // all64Compile 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.7.0' - // all64Compile 'tv.danmaku.ijk.media:ijkplayer-arm64:0.7.0' - // all64Compile 'tv.danmaku.ijk.media:ijkplayer-x86:0.7.0' - // all64Compile 'tv.danmaku.ijk.media:ijkplayer-x86_64:0.7.0' + // all64Compile 'tv.danmaku.ijk.media:ijkplayer-armv5:0.7.1' + // all64Compile 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.7.1' + // all64Compile 'tv.danmaku.ijk.media:ijkplayer-arm64:0.7.1' + // all64Compile 'tv.danmaku.ijk.media:ijkplayer-x86:0.7.1' + // all64Compile 'tv.danmaku.ijk.media:ijkplayer-x86_64:0.7.1' // armv5Compile project(':player-armv5') // armv7aCompile project(':player-armv7a') diff --git a/android/ijkplayer/ijkplayer-exo/build.gradle b/android/ijkplayer/ijkplayer-exo/build.gradle index 0f88ad0545d2ce0f2698d53752967095d73d9e6a..15ba6309568d914c5eb2c6ea1b21e073de719291 100644 --- a/android/ijkplayer/ijkplayer-exo/build.gradle +++ b/android/ijkplayer/ijkplayer-exo/build.gradle @@ -28,7 +28,7 @@ dependencies { compile 'com.google.android.exoplayer:exoplayer:r1.5.11' compile project(':ijkplayer-java') - // compile 'tv.danmaku.ijk.media:ijkplayer-java:0.7.0' + // compile 'tv.danmaku.ijk.media:ijkplayer-java:0.7.1' } gradle.startParameter.taskNames.each { task -> diff --git a/version.sh b/version.sh index 909ccdcd921216a2c8ac0665a502b9559b720d8b..b5ce98824ea7686933dad44715f4c4b1a6bdebaf 100755 --- a/version.sh +++ b/version.sh @@ -2,8 +2,8 @@ set -e -VERSION_CODE=700000 -VERSION_NAME=0.7.0 +VERSION_CODE=700100 +VERSION_NAME=0.7.1 VERSION_TARGET=$1 do_version_readme() {