Skip to content
This repository has been archived by the owner on Feb 26, 2023. It is now read-only.

Commit

Permalink
Update example projects
Browse files Browse the repository at this point in the history
  • Loading branch information
WonderCsabo committed Mar 30, 2020
1 parent 12d1ed9 commit e6ed75c
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ android:
- tools # https://github.com/travis-ci/travis-ci/issues/6059
- platform-tools
- android-16
- android-28
- android-29
- build-tools-28.0.3

before_script:
Expand Down
6 changes: 3 additions & 3 deletions examples/RoboGuiceExample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
}
dependencies {
// replace with the current version of the Android plugin
classpath "com.android.tools.build:gradle:3.3.1"
classpath "com.android.tools.build:gradle:3.6.1"
}
}

Expand All @@ -27,11 +27,11 @@ dependencies {
}

android {
compileSdkVersion 28
compileSdkVersion 29

defaultConfig {
minSdkVersion 14
targetSdkVersion 28
targetSdkVersion 29

// If you have different applicationIds for buildTypes or productFlavors uncomment this block.
//javaCompileOptions {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\:https://services.gradle.org/distributions/gradle-5.2.1-all.zip
distributionUrl=https\:https://services.gradle.org/distributions/gradle-6.3-all.zip
6 changes: 3 additions & 3 deletions examples/gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
}
dependencies {
// replace with the current version of the Android plugin
classpath "com.android.tools.build:gradle:3.3.1"
classpath "com.android.tools.build:gradle:3.6.1"
}
}

Expand All @@ -24,11 +24,11 @@ dependencies {
}

android {
compileSdkVersion 28
compileSdkVersion 29

defaultConfig {
minSdkVersion 14
targetSdkVersion 28
targetSdkVersion 29

// If you have different applicationIds for buildTypes or productFlavors uncomment this block.
//javaCompileOptions {
Expand Down
2 changes: 1 addition & 1 deletion examples/gradle/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\:https://services.gradle.org/distributions/gradle-5.2.1-all.zip
distributionUrl=https\:https://services.gradle.org/distributions/gradle-6.3-all.zip
8 changes: 4 additions & 4 deletions examples/kotlin/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
buildscript {
ext.kotlin_version = "1.3.21"
ext.kotlin_version = "1.3.71"

repositories {
google()
jcenter()
}
dependencies {
// replace with the current version of the Android plugin
classpath "com.android.tools.build:gradle:3.3.1"
classpath "com.android.tools.build:gradle:3.6.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version"
}
Expand All @@ -25,11 +25,11 @@ apply plugin: "kotlin-allopen"
apply plugin: "kotlin-kapt"

android {
compileSdkVersion 28
compileSdkVersion 29

defaultConfig {
minSdkVersion 14
targetSdkVersion 28
targetSdkVersion 29
}
sourceSets {
main.java.srcDirs += "src/main/kotlin"
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\:https://services.gradle.org/distributions/gradle-5.2.1-all.zip
distributionUrl=https\:https://services.gradle.org/distributions/gradle-6.3-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit e6ed75c

Please sign in to comment.