Skip to content

Commit ee515c8

Browse files
committedAug 1, 2024·
Update versions of test dependencies + AGP.
Update to: - latest stable releases for androidx.test.* - robolectric 4.13 - AGP 8.5.0 - minSdk 21 - compileSdk + targetSdk 34 - kotlin 1.9.22 Also use -no-watch-fs in test-all.sh to reduce filesystem related logspan
1 parent 8def210 commit ee515c8

File tree

58 files changed

+213
-211
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+213
-211
lines changed
 

‎integration/ServiceTestRuleSample/app/build.gradle

+3-3
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.integrationtesting.ServiceTestRuleSample"
7-
minSdkVersion 14
8-
targetSdkVersion 33
7+
minSdkVersion 21
8+
targetSdkVersion 34
99
versionCode 1
1010
versionName "1.0"
1111

‎integration/ServiceTestRuleSample/build.gradle

+5-5
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,8 +24,8 @@ allprojects {
2424
}
2525

2626
ext {
27-
coreVersion = "1.6.0-alpha01"
28-
extJUnitVersion = "1.2.0-alpha01"
29-
runnerVersion = "1.6.0-alpha03"
30-
rulesVersion = "1.6.0-alpha01"
27+
coreVersion = "1.6.1"
28+
extJUnitVersion = "1.2.1"
29+
runnerVersion = "1.6.1"
30+
rulesVersion = "1.6.1"
3131
}

0 commit comments

Comments
 (0)
Please sign in to comment.