Skip to content

Commit f533f18

Browse files
committed
Update versions.
Update to latest stable AGP,androidx,compile/target SDK versions, and latest androidx.test beta.
1 parent 6604e75 commit f533f18

File tree

36 files changed

+201
-201
lines changed

36 files changed

+201
-201
lines changed

integration/ServiceTestRuleSample/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 32
4+
compileSdkVersion 33
55
buildToolsVersion rootProject.buildToolsVersion
66
defaultConfig {
77
applicationId "com.example.android.testing.integrationtesting.ServiceTestRuleSample"
88
minSdkVersion 14
9-
targetSdkVersion 32
9+
targetSdkVersion 33
1010
versionCode 1
1111
versionName "1.0"
1212

integration/ServiceTestRuleSample/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.agpVersion = "7.3.0-beta01"
4+
ext.agpVersion = "7.3.0"
55
repositories {
66
// Insert local test repo here
77
google()
@@ -25,8 +25,8 @@ allprojects {
2525

2626
ext {
2727
buildToolsVersion = "32.0.0"
28-
coreVersion = "1.5.0-alpha02"
29-
extJUnitVersion = "1.1.4-alpha07"
30-
runnerVersion = "1.5.0-alpha04"
31-
rulesVersion = "1.4.1-alpha07"
28+
coreVersion = "1.5.0-beta01"
29+
extJUnitVersion = "1.1.4-beta01"
30+
runnerVersion = "1.5.0-beta01"
31+
rulesVersion = "1.4.1-beta01"
3232
}

runner/AndroidJunitRunnerSample/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ apply plugin: 'com.android.application'
22

33

44
android {
5-
compileSdkVersion 32
5+
compileSdkVersion 33
66
buildToolsVersion rootProject.buildToolsVersion
77
defaultConfig {
88
applicationId "com.example.android.testing.androidjunitrunnersample"
99
minSdkVersion 14
10-
targetSdkVersion 32
10+
targetSdkVersion 33
1111
versionCode 1
1212
versionName "1.0"
1313

runner/AndroidJunitRunnerSample/build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.agpVersion = "7.3.0-beta01"
4+
ext.agpVersion = "7.3.0"
55
repositories {
66
// Insert local test repo here
77
google()
@@ -25,12 +25,12 @@ allprojects {
2525

2626
ext {
2727
buildToolsVersion = "32.0.0"
28-
androidxAnnotationVersion = "1.3.0"
29-
guavaVersion = "30.1.1-android"
30-
coreVersion = "1.5.0-alpha02"
31-
extJUnitVersion = "1.1.4-alpha07"
32-
runnerVersion = "1.5.0-alpha04"
33-
rulesVersion = "1.4.1-alpha07"
34-
espressoVersion = "3.5.0-alpha07"
28+
androidxAnnotationVersion = "1.5.0"
29+
guavaVersion = "31.1-android"
30+
coreVersion = "1.5.0-beta01"
31+
extJUnitVersion = "1.1.4-beta01"
32+
runnerVersion = "1.5.0-beta01"
33+
rulesVersion = "1.4.1-beta01"
34+
espressoVersion = "3.5.0-beta01"
3535
truthVersion = "1.1.3"
3636
}

runner/AndroidTestOrchestratorSample/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 32
4+
compileSdkVersion 33
55
buildToolsVersion rootProject.buildToolsVersion
66
defaultConfig {
77
applicationId "com.example.android.testing.androidtestorchestratorsample"
88
minSdkVersion 14
9-
targetSdkVersion 32
9+
targetSdkVersion 33
1010
versionCode 1
1111
versionName "1.0"
1212

runner/AndroidTestOrchestratorSample/build.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.agpVersion = "7.3.0-beta01"
4+
ext.agpVersion = "7.3.0"
55
repositories {
66
// Insert local test repo here
77
google()
@@ -25,14 +25,14 @@ allprojects {
2525

2626
ext {
2727
buildToolsVersion = "32.0.0"
28-
androidxAnnotationVersion = "1.3.0"
29-
guavaVersion = "30.1.1-android"
30-
coreVersion = "1.5.0-alpha02"
31-
extJUnitVersion = "1.1.4-alpha07"
32-
runnerVersion = "1.5.0-alpha04"
33-
monitorVersion = "1.6.0-alpha05"
34-
rulesVersion = "1.4.1-alpha07"
35-
espressoVersion = "3.5.0-alpha07"
36-
orchestratorVersion = "1.4.2-alpha04"
28+
androidxAnnotationVersion = "1.5.0"
29+
guavaVersion = "31.1-android"
30+
coreVersion = "1.5.0-beta01"
31+
extJUnitVersion = "1.1.4-beta01"
32+
runnerVersion = "1.5.0-beta01"
33+
monitorVersion = "1.6.0-beta01"
34+
rulesVersion = "1.4.1-beta01"
35+
espressoVersion = "3.5.0-beta01"
36+
orchestratorVersion = "1.4.2-beta01"
3737
truthVersion = "1.1.3"
3838
}

ui/espresso/AccessibilitySample/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 32
4+
compileSdkVersion 33
55
buildToolsVersion rootProject.buildToolsVersion
66
defaultConfig {
77
applicationId "com.example.android.testing.espresso.AccessibilitySample"
88
minSdkVersion 14
9-
targetSdkVersion 32
9+
targetSdkVersion 33
1010
versionCode 1
1111
versionName "1.0"
1212

ui/espresso/AccessibilitySample/build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.kotlinVersion = "1.6.21"
5-
ext.agpVersion = "7.3.0-beta01"
4+
ext.kotlinVersion = "1.7.10"
5+
ext.agpVersion = "7.3.0"
66
repositories {
77
// Insert local test repo here
88
google()
@@ -27,12 +27,12 @@ allprojects {
2727

2828
ext {
2929
buildToolsVersion = "32.0.0"
30-
androidxAnnotationVersion = "1.3.0"
30+
androidxAnnotationVersion = "1.5.0"
3131
robolectricVersion = "4.9"
32-
extTruthVersion = "1.5.0-alpha07"
33-
coreVersion = "1.5.0-alpha02"
34-
extJUnitVersion = "1.1.4-alpha07"
35-
runnerVersion = "1.5.0-alpha04"
36-
espressoVersion = "3.5.0-alpha07"
37-
guavaVersion = "30.1.1-android"
32+
extTruthVersion = "1.5.0-beta01"
33+
coreVersion = "1.5.0-beta01"
34+
extJUnitVersion = "1.1.4-beta01"
35+
runnerVersion = "1.5.0-beta01"
36+
espressoVersion = "3.5.0-beta01"
37+
guavaVersion = "31.1-android"
3838
}

ui/espresso/BasicSample/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ apply plugin: 'kotlin-android'
55
apply plugin: 'kotlin-android-extensions'
66

77
android {
8-
compileSdkVersion 32
8+
compileSdkVersion 33
99
buildToolsVersion rootProject.buildToolsVersion
1010
defaultConfig {
1111
applicationId "com.example.android.testing.espresso.BasicSample"
1212
minSdkVersion 14
13-
targetSdkVersion 32
13+
targetSdkVersion 33
1414
versionCode 1
1515
versionName "1.0"
1616

ui/espresso/BasicSample/build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.kotlinVersion = "1.6.21"
5-
ext.agpVersion = "7.3.0-beta01"
4+
ext.kotlinVersion = "1.7.10"
5+
ext.agpVersion = "7.3.0"
66
repositories {
77
// Insert local test repo here
88
google()
@@ -27,12 +27,12 @@ allprojects {
2727

2828
ext {
2929
buildToolsVersion = "32.0.0"
30-
androidxAnnotationVersion = "1.3.0"
30+
androidxAnnotationVersion = "1.5.0"
3131
robolectricVersion = "4.9"
32-
guavaVersion = "30.1.1-android"
33-
extTruthVersion = "1.5.0-alpha07"
34-
coreVersion = "1.5.0-alpha02"
35-
extJUnitVersion = "1.1.4-alpha07"
36-
runnerVersion = "1.5.0-alpha04"
37-
espressoVersion = "3.5.0-alpha07"
32+
guavaVersion = "31.1-android"
33+
extTruthVersion = "1.5.0-beta01"
34+
coreVersion = "1.5.0-beta01"
35+
extJUnitVersion = "1.1.4-beta01"
36+
runnerVersion = "1.5.0-beta01"
37+
espressoVersion = "3.5.0-beta01"
3838
}

0 commit comments

Comments
 (0)