Skip to content

Commit 0cef59e

Browse files
authored
Merge pull request androidannotations#2263 from WonderCsabo/update-example-projects
Update example projects
2 parents 12d1ed9 + e3ac7f8 commit 0cef59e

7 files changed

Lines changed: 15 additions & 15 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ android:
2323
- tools # https://github.com/travis-ci/travis-ci/issues/6059
2424
- platform-tools
2525
- android-16
26-
- android-28
26+
- android-29
2727
- build-tools-28.0.3
2828

2929
before_script:
@@ -32,7 +32,7 @@ before_script:
3232
script:
3333
- set -e
3434
- cd $TRAVIS_BUILD_DIR/AndroidAnnotations
35-
- ./mvnw install -P travis
35+
- ./mvnw install -P travis -q
3636
- cd $TRAVIS_BUILD_DIR/examples/maven
3737
- ./mvnw install
3838
- cd $TRAVIS_BUILD_DIR/examples/gradle

examples/RoboGuiceExample/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
}
66
dependencies {
77
// replace with the current version of the Android plugin
8-
classpath "com.android.tools.build:gradle:3.3.1"
8+
classpath "com.android.tools.build:gradle:3.6.1"
99
}
1010
}
1111

@@ -27,11 +27,11 @@ dependencies {
2727
}
2828

2929
android {
30-
compileSdkVersion 28
30+
compileSdkVersion 29
3131

3232
defaultConfig {
3333
minSdkVersion 14
34-
targetSdkVersion 28
34+
targetSdkVersion 29
3535

3636
// If you have different applicationIds for buildTypes or productFlavors uncomment this block.
3737
//javaCompileOptions {

examples/RoboGuiceExample/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
33
zipStoreBase=GRADLE_USER_HOME
44
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-all.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-all.zip

examples/gradle/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
}
66
dependencies {
77
// replace with the current version of the Android plugin
8-
classpath "com.android.tools.build:gradle:3.3.1"
8+
classpath "com.android.tools.build:gradle:3.6.1"
99
}
1010
}
1111

@@ -24,11 +24,11 @@ dependencies {
2424
}
2525

2626
android {
27-
compileSdkVersion 28
27+
compileSdkVersion 29
2828

2929
defaultConfig {
3030
minSdkVersion 14
31-
targetSdkVersion 28
31+
targetSdkVersion 29
3232

3333
// If you have different applicationIds for buildTypes or productFlavors uncomment this block.
3434
//javaCompileOptions {

examples/gradle/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-all.zip

examples/kotlin/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
buildscript {
2-
ext.kotlin_version = "1.3.21"
2+
ext.kotlin_version = "1.3.71"
33

44
repositories {
55
google()
66
jcenter()
77
}
88
dependencies {
99
// replace with the current version of the Android plugin
10-
classpath "com.android.tools.build:gradle:3.3.1"
10+
classpath "com.android.tools.build:gradle:3.6.1"
1111
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1212
classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version"
1313
}
@@ -25,11 +25,11 @@ apply plugin: "kotlin-allopen"
2525
apply plugin: "kotlin-kapt"
2626

2727
android {
28-
compileSdkVersion 28
28+
compileSdkVersion 29
2929

3030
defaultConfig {
3131
minSdkVersion 14
32-
targetSdkVersion 28
32+
targetSdkVersion 29
3333
}
3434
sourceSets {
3535
main.java.srcDirs += "src/main/kotlin"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)