Skip to content

Commit 3b70e30

Browse files
committed
Add missing projects to projects.conf
The following projects were missing from the `projects.conf` file, so they were not updated when running `update_versions.sh`: - `runner/AndroidTestOrchestratorWithTestCoverageSample` - `ui/espresso/MultiProcessSample` - `unit/BasicSample` - `unit/BasicSample-kotlinApp` - `unit/BasicUnitAndroidTest`
1 parent 8c9df3a commit 3b70e30

File tree

10 files changed

+34
-29
lines changed

10 files changed

+34
-29
lines changed

projects.conf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
integration/ServiceTestRuleSample
22
runner/AndroidJunitRunnerSample
33
runner/AndroidTestOrchestratorSample
4+
runner/AndroidTestOrchestratorWithTestCoverageSample
45
ui/espresso/AccessibilitySample
56
ui/espresso/BasicSample
67
ui/espresso/CustomMatcherSample
@@ -10,10 +11,14 @@ ui/espresso/FragmentScenarioSample
1011
ui/espresso/IdlingResourceSample
1112
ui/espresso/IntentsAdvancedSample
1213
ui/espresso/IntentsBasicSample
14+
ui/espresso/MultiProcessSample
1315
ui/espresso/MultiWindowSample
1416
ui/espresso/MultiProcessSample
1517
ui/espresso/RecyclerViewSample
1618
ui/espresso/ScreenshotSample
1719
ui/espresso/WebBasicSample
1820
ui/uiautomator/BasicSample
1921
unit/BasicNativeAndroidTest
22+
unit/BasicSample
23+
unit/BasicSample-kotlinApp
24+
unit/BasicUnitAndroidTest

runner/AndroidTestOrchestratorWithTestCoverageSample/app/build.gradle

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

33
android {
4-
compileSdk 33
4+
compileSdk 34
55
defaultConfig {
66
applicationId "com.example.android.testing.androidtestorchestratorsample"
7-
minSdkVersion 14
8-
targetSdkVersion 33
7+
minSdkVersion 21
8+
targetSdkVersion 34
99
versionCode 1
1010
versionName "1.0"
1111

runner/AndroidTestOrchestratorWithTestCoverageSample/build.gradle

Lines changed: 9 additions & 9 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 = "8.1.1"
4+
ext.agpVersion = "8.5.0"
55
repositories {
66
// Insert local test repo here
77
google()
@@ -24,14 +24,14 @@ allprojects {
2424
}
2525

2626
ext {
27-
androidxAnnotationVersion = "1.2.0"
28-
guavaVersion = "30.1.1-android"
29-
coreVersion = "1.6.0-alpha01"
30-
extJUnitVersion = "1.2.0-alpha01"
31-
runnerVersion = "1.6.0-alpha03"
32-
rulesVersion = "1.6.0-alpha01"
27+
androidxAnnotationVersion = "1.5.0"
28+
guavaVersion = "31.1-android"
29+
coreVersion = "1.6.1"
30+
extJUnitVersion = "1.2.1"
31+
runnerVersion = "1.6.1"
32+
rulesVersion = "1.6.1"
3333
testServicesVersion = "1.5.0-alpha01"
34-
orchestratorVersion = "1.5.0-alpha01"
35-
espressoVersion = "3.6.0-alpha01"
34+
orchestratorVersion = "1.5.0"
35+
espressoVersion = "3.6.1"
3636
truthVersion = "1.1.3"
3737
}

ui/espresso/IntentsAdvancedSample/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: "com.android.application"
22

33
android {
4-
compileSdkVersion 33
4+
compileSdk 34
55
buildToolsVersion = rootProject.buildToolsVersion
66
defaultConfig {
77
applicationId "com.example.android.testing.espresso.intents.AdvancedSample"

unit/BasicSample-kotlinApp/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ apply plugin: "kotlin-android"
55
apply plugin: "kotlin-android-extensions"
66

77
android {
8-
compileSdkVersion 27
8+
compileSdk 34
99
defaultConfig {
1010
applicationId "com.example.android.testing.unittesting.BasicSample"
11-
minSdkVersion 14
11+
minSdkVersion 21
1212
versionCode 1
1313
versionName "1.0"
14-
targetSdkVersion 27
14+
targetSdkVersion 34
1515
}
1616
}
1717

unit/BasicSample-kotlinApp/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
kotlinVersion = "1.3.61"
3+
kotlinVersion = "1.9.22"
44
}
55
repositories {
66
google()

unit/BasicSample/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
apply plugin: "com.android.application"
1818

1919
android {
20-
compileSdkVersion 30
20+
compileSdk 34
2121
buildToolsVersion = rootProject.buildToolsVersion
2222
defaultConfig {
2323
applicationId "com.example.android.testing.unittesting.BasicSample"
24-
minSdkVersion 14
24+
minSdkVersion 21
2525
versionCode 1
2626
versionName "1.0"
27-
targetSdkVersion 30
27+
targetSdkVersion 34
2828
}
2929
productFlavors {
3030
}

unit/BasicSample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
// Top-level build file where you can add configuration options common to all sub-projects/modules.
1818
buildscript {
19-
ext.agpVersion = "7.3.0-alpha07"
19+
ext.agpVersion = "8.5.0"
2020
repositories {
2121
// Insert local test repo here
2222
google()

unit/BasicUnitAndroidTest/app/build.gradle

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

33
android {
4-
compileSdk 33
4+
compileSdk 34
55
buildToolsVersion = rootProject.buildToolsVersion
66

77
defaultConfig {
88
applicationId "com.example.android.testing.unittesting.basicunitandroidtest"
9-
minSdkVersion 14
10-
targetSdkVersion 33
9+
minSdkVersion 21
10+
targetSdkVersion 34
1111
versionCode 1
1212
versionName "1.0"
1313
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

unit/BasicUnitAndroidTest/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 = "8.1.1"
4+
ext.agpVersion = "8.5.0"
55
repositories {
66
// Insert local test repo here
77
google()
@@ -25,10 +25,10 @@ allprojects {
2525

2626
ext {
2727
buildToolsVersion = "31.0.0"
28-
androidxAnnotationVersion = "1.2.0"
29-
coreVersion = "1.5.0"
30-
extJUnitVersion = "1.1.4"
31-
runnerVersion = "1.5.0"
28+
androidxAnnotationVersion = "1.5.0"
29+
coreVersion = "1.6.1"
30+
extJUnitVersion = "1.2.1"
31+
runnerVersion = "1.6.1"
3232
hamcrestVersion = "1.3"
3333
truthVersion = "1.1.3"
3434
}

0 commit comments

Comments
 (0)