Skip to content

Commit

Permalink
k0.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
raymond1012 committed Jan 19, 2018
1 parent 8e07f99 commit 3ee3447
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 30 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ allprojects {
dependencies {
# required, enough for most devices.
compile 'tv.danmaku.ijk.media:ijkplayer-java:0.8.6'
compile 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.8.6'
compile 'tv.danmaku.ijk.media:ijkplayer-java:0.8.7'
compile 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.8.7'
# Other ABIs: optional
compile 'tv.danmaku.ijk.media:ijkplayer-armv5:0.8.6'
compile 'tv.danmaku.ijk.media:ijkplayer-arm64:0.8.6'
compile 'tv.danmaku.ijk.media:ijkplayer-x86:0.8.6'
compile 'tv.danmaku.ijk.media:ijkplayer-x86_64:0.8.6'
compile 'tv.danmaku.ijk.media:ijkplayer-armv5:0.8.7'
compile 'tv.danmaku.ijk.media:ijkplayer-arm64:0.8.7'
compile 'tv.danmaku.ijk.media:ijkplayer-x86:0.8.7'
compile 'tv.danmaku.ijk.media:ijkplayer-x86_64:0.8.7'
# ExoPlayer as IMediaPlayer: optional, experimental
compile 'tv.danmaku.ijk.media:ijkplayer-exo:0.8.6'
compile 'tv.danmaku.ijk.media:ijkplayer-exo:0.8.7'
}
```
- iOS
Expand Down Expand Up @@ -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.8.6
git checkout -B latest k0.8.7
./init-android.sh
Expand Down Expand Up @@ -191,7 +191,7 @@ cd ..
```
git clone https://github.com/Bilibili/ijkplayer.git ijkplayer-ios
cd ijkplayer-ios
git checkout -B latest k0.8.6
git checkout -B latest k0.8.7
./init-ios.sh
Expand Down
4 changes: 2 additions & 2 deletions android/ijkplayer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ ext {

targetSdkVersion = 23

versionCode = 800600
versionName = "0.8.6"
versionCode = 800700
versionName = "0.8.7"
}

wrapper {
Expand Down
4 changes: 2 additions & 2 deletions android/ijkplayer/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.6
VERSION_CODE=800600
VERSION_NAME=0.8.7
VERSION_CODE=800700
GROUP=tv.danmaku.ijk.media

# http://central.sonatype.org/pages/requirements.html
Expand Down
20 changes: 10 additions & 10 deletions android/ijkplayer/ijkplayer-example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,18 +54,18 @@ dependencies {
all64Compile project(':ijkplayer-x86')
all64Compile project(':ijkplayer-x86_64')

// compile 'tv.danmaku.ijk.media:ijkplayer-java:0.8.6'
// compile 'tv.danmaku.ijk.media:ijkplayer-exo:0.8.6'
// compile 'tv.danmaku.ijk.media:ijkplayer-java:0.8.7'
// compile 'tv.danmaku.ijk.media:ijkplayer-exo:0.8.7'

// all32Compile 'tv.danmaku.ijk.media:ijkplayer-armv5:0.8.6'
// all32Compile 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.8.6'
// all32Compile 'tv.danmaku.ijk.media:ijkplayer-x86:0.8.6'
// all32Compile 'tv.danmaku.ijk.media:ijkplayer-armv5:0.8.7'
// all32Compile 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.8.7'
// all32Compile 'tv.danmaku.ijk.media:ijkplayer-x86:0.8.7'

// all64Compile 'tv.danmaku.ijk.media:ijkplayer-armv5:0.8.6'
// all64Compile 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.8.6'
// all64Compile 'tv.danmaku.ijk.media:ijkplayer-arm64:0.8.6'
// all64Compile 'tv.danmaku.ijk.media:ijkplayer-x86:0.8.6'
// all64Compile 'tv.danmaku.ijk.media:ijkplayer-x86_64:0.8.6'
// all64Compile 'tv.danmaku.ijk.media:ijkplayer-armv5:0.8.7'
// all64Compile 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.8.7'
// all64Compile 'tv.danmaku.ijk.media:ijkplayer-arm64:0.8.7'
// all64Compile 'tv.danmaku.ijk.media:ijkplayer-x86:0.8.7'
// all64Compile 'tv.danmaku.ijk.media:ijkplayer-x86_64:0.8.7'

// armv5Compile project(':player-armv5')
// armv7aCompile project(':player-armv7a')
Expand Down
2 changes: 1 addition & 1 deletion android/ijkplayer/ijkplayer-exo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.6'
// compile 'tv.danmaku.ijk.media:ijkplayer-java:0.8.7'
}

gradle.startParameter.taskNames.each { task ->
Expand Down
8 changes: 4 additions & 4 deletions ios/IJKMediaPlayer/IJKMediaPlayer.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1394,7 +1394,7 @@
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
CURRENT_PROJECT_VERSION = 0.8.6;
CURRENT_PROJECT_VERSION = 0.8.7;
DEBUG_INFORMATION_FORMAT = dwarf;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
Expand Down Expand Up @@ -1449,7 +1449,7 @@
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
CURRENT_PROJECT_VERSION = 0.8.6;
CURRENT_PROJECT_VERSION = 0.8.7;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
Expand Down Expand Up @@ -1500,7 +1500,7 @@
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CURRENT_PROJECT_VERSION = 0.8.6;
CURRENT_PROJECT_VERSION = 0.8.7;
DEBUG_INFORMATION_FORMAT = dwarf;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
Expand Down Expand Up @@ -1550,7 +1550,7 @@
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CURRENT_PROJECT_VERSION = 0.8.6;
CURRENT_PROJECT_VERSION = 0.8.7;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
Expand Down
4 changes: 2 additions & 2 deletions version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

set -e

VERSION_CODE=800600
VERSION_NAME=0.8.6
VERSION_CODE=800700
VERSION_NAME=0.8.7
VERSION_TARGET=$1

do_version_readme() {
Expand Down

0 comments on commit 3ee3447

Please sign in to comment.