Skip to content

Commit d1f920f

Browse files
committed
AGP 7.4.1
1 parent 83d664d commit d1f920f

File tree

3 files changed

+22
-19
lines changed

3 files changed

+22
-19
lines changed

build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
// root build.gradle
22
buildscript {
33
ext {
4-
agp_version = '7.3.1'
4+
agp_version = '7.4.1'
55
nav_version = '2.5.3'
6-
fragment_version = '1.5.4'
7-
room_version = '2.4.3'
6+
fragment_version = '1.5.5'
7+
room_version = '2.5.0'
88
annotation_version = '1.5.0'
9-
material_version = '1.7.0'
9+
material_version = '1.8.0'
1010
flexbox_version = '3.0.0'
11-
appcompat_version = '1.5.1'
11+
appcompat_version = '1.6.0'
1212
splash_version = '1.0.0'
1313
recyclerview_version = '1.2.1'
1414
preference_version = '1.2.0'
1515
cardview_version = '1.0.0'
16-
gson_version = '2.9.0'
16+
gson_version = '2.10.1'
1717
retrofit_version = '2.9.0'
1818
junit_version = '4.13.2'
1919
uiautomator_version = '2.2.0'
20-
espresso_version = '3.5.0'
21-
kotlin_version = '1.7.20'
20+
espresso_version = '3.5.1'
21+
kotlin_version = '1.8.10'
2222
}
2323
}
2424

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-7.4.2-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip

mobile/build.gradle

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,20 @@ android {
3030
}
3131
}
3232

33+
sourceSets {
34+
main {
35+
androidTest.assets.srcDirs += files("$projectDir/schemas".toString())
36+
}
37+
}
38+
3339
testOptions {
3440
resultsDir = "${project.buildDir}/results"
3541
}
3642

43+
buildFeatures {
44+
dataBinding = true
45+
}
46+
3747
signingConfigs {
3848
debug {
3949

@@ -43,21 +53,14 @@ android {
4353
}
4454
}
4555

46-
sourceSets {
47-
main {
48-
androidTest.assets.srcDirs += files("$projectDir/schemas".toString())
49-
}
50-
}
51-
buildFeatures {
52-
dataBinding = true
53-
}
5456
lint {
5557
lintConfig rootProject.file('lint.xml')
5658
checkAllWarnings true
5759
warningsAsErrors true
5860
abortOnError false
5961
showAll false
6062
}
63+
6164
buildTypes {
6265
debug {
6366
applicationIdSuffix ".debug"
@@ -133,11 +136,11 @@ dependencies {
133136
testImplementation "junit:junit:$junit_version"
134137

135138
// https://mvnrepository.com/artifact/androidx.test.ext
136-
androidTestImplementation "androidx.test.ext:junit:1.1.4"
139+
androidTestImplementation "androidx.test.ext:junit:1.1.5"
137140

138141
// https://mvnrepository.com/artifact/androidx.test
139142
androidTestImplementation "androidx.test:core:1.5.0"
140-
androidTestImplementation "androidx.test:runner:1.5.1"
143+
androidTestImplementation "androidx.test:runner:1.5.2"
141144
androidTestImplementation "androidx.test:rules:1.5.0"
142145

143146
// https://mvnrepository.com/artifact/androidx.test.uiautomator/uiautomator

0 commit comments

Comments
 (0)