Skip to content

Commit

Permalink
Update build tools versions (#52)
Browse files Browse the repository at this point in the history
- Solves NDK error "No toolchains found ... mips64el-linux-android"
  • Loading branch information
elevenfive authored and philippb committed Jan 3, 2019
1 parent f11bc03 commit e812ad3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.2.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip
6 changes: 3 additions & 3 deletions relinker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ group = 'com.getkeepsafe.relinker'
version = '1.3.0'

android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
compileSdkVersion 28
buildToolsVersion "28.0.3"
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_6
targetCompatibility JavaVersion.VERSION_1_6
Expand All @@ -30,7 +30,7 @@ android {
}

dependencies {
testImplementation "org.robolectric:robolectric:3.5"
testImplementation "org.robolectric:robolectric:4.0.2"
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-all:1.10.19'
testImplementation 'org.hamcrest:hamcrest-all:1.3'
Expand Down
6 changes: 3 additions & 3 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ repositories {
}

android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
compileSdkVersion 28
buildToolsVersion "28.0.3"

sourceSets {
main {
Expand All @@ -18,7 +18,7 @@ android {
applicationId "com.getkeepsafe.relinker.sample"
//noinspection MinSdkTooLow
minSdkVersion 9
targetSdkVersion 26
targetSdkVersion 28
versionCode 1
versionName "1.0"
}
Expand Down

0 comments on commit e812ad3

Please sign in to comment.