Skip to content

Commit

Permalink
gradle: upgrade version && targetSdkVersion && compileSdkVersion
Browse files Browse the repository at this point in the history
  • Loading branch information
ctiao committed Feb 6, 2018
1 parent 21f902f commit b413f46
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 21 deletions.
6 changes: 3 additions & 3 deletions DanmakuFlameMaster/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ apply plugin: 'com.android.library'
def SourcePath = 'src/main/'

android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
compileSdkVersion 27
buildToolsVersion "26.0.2"

defaultConfig {
minSdkVersion 9
targetSdkVersion 19
targetSdkVersion 27
versionName VERSION_NAME
versionCode Integer.parseInt(VERSION_CODE)
}
Expand Down
6 changes: 3 additions & 3 deletions Sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ dependencies {
// compile 'tv.danmaku.ijk.media:ijkplayer-arm64:0.6.2'
}
android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
compileSdkVersion 27
buildToolsVersion "26.0.2"

defaultConfig {
minSdkVersion 9
targetSdkVersion 19
targetSdkVersion 27
versionCode 1
versionName "1.0"
}
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7'
}
}

Expand Down
5 changes: 2 additions & 3 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#
#Sat Feb 01 20:41:29 CET 2014
#Tue Feb 06 14:51:25 CST 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-2.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
6 changes: 3 additions & 3 deletions ndkbitmap-armv5/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
compileSdkVersion 27
buildToolsVersion "26.0.2"

defaultConfig {
minSdkVersion 9
targetSdkVersion 24
targetSdkVersion 27
versionCode 1
versionName "1.0"
}
Expand Down
6 changes: 3 additions & 3 deletions ndkbitmap-armv7a/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
compileSdkVersion 27
buildToolsVersion "26.0.2"

defaultConfig {
minSdkVersion 9
targetSdkVersion 24
targetSdkVersion 27
versionCode 1
versionName "1.0"
}
Expand Down
6 changes: 3 additions & 3 deletions ndkbitmap-x86/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
compileSdkVersion 27
buildToolsVersion "26.0.2"

defaultConfig {
minSdkVersion 9
targetSdkVersion 24
targetSdkVersion 27
versionCode 1
versionName "1.0"
}
Expand Down

0 comments on commit b413f46

Please sign in to comment.