Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit ed0fc19

Browse files
committed
build: upgrade dependencies
Signed-off-by: Harsh Shandilya <[email protected]>
1 parent 09c5400 commit ed0fc19

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

app/src/nonFree/res/layout/activity_oreo_autofill_sms.xml

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

3737
<ProgressBar
3838
android:id="@+id/progress"
39-
style="@style/Widget.MaterialComponents.ProgressIndicator.Circular.Indeterminate"
39+
style="@style/Widget.MaterialComponents.CircularProgressIndicator"
4040
android:layout_width="wrap_content"
4141
android:layout_height="wrap_content"
4242
android:layout_margin="10dp"

buildSrc/src/main/java/BaseProjectConfig.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ internal fun Project.configureForRootProject() {
2525
delete(rootProject.buildDir)
2626
}
2727
tasks.withType<Wrapper> {
28-
gradleVersion = "6.7.1"
28+
gradleVersion = "6.8-rc-1"
2929
distributionType = Wrapper.DistributionType.ALL
30-
distributionSha256Sum = "22449f5231796abd892c98b2a07c9ceebe4688d192cd2d6763f8e3bf8acbedeb"
30+
distributionSha256Sum = "89714fb5db6bd66fa5a2302f58d26dc33ecd3db36b24a42d84ff6ba99551eeda"
3131
}
3232
configureBinaryCompatibilityValidator()
3333
}

buildSrc/src/main/java/Dependencies.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ object Dependencies {
99
object Kotlin {
1010
object Coroutines {
1111

12-
private const val version = "1.4.1"
12+
private const val version = "1.4.2"
1313
const val android = "org.jetbrains.kotlinx:kotlinx-coroutines-android:$version"
1414
const val core = "org.jetbrains.kotlinx:kotlinx-coroutines-core:$version"
1515
}
@@ -24,14 +24,14 @@ object Dependencies {
2424
const val autofill = "androidx.autofill:autofill:1.1.0-rc01"
2525
const val appcompat = "androidx.appcompat:appcompat:1.3.0-alpha02"
2626
const val biometric = "androidx.biometric:biometric:1.1.0-rc01"
27-
const val constraint_layout = "androidx.constraintlayout:constraintlayout:2.0.4"
27+
const val constraint_layout = "androidx.constraintlayout:constraintlayout:2.1.0-alpha1"
2828
const val core_ktx = "androidx.core:core-ktx:1.5.0-alpha05"
2929
const val documentfile = "androidx.documentfile:documentfile:1.0.1"
3030
const val fragment_ktx = "androidx.fragment:fragment-ktx:1.3.0-beta01"
3131
const val lifecycle_common = "androidx.lifecycle:lifecycle-common-java8:$lifecycleVersion"
3232
const val lifecycle_livedata_ktx = "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycleVersion"
3333
const val lifecycle_viewmodel_ktx = "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycleVersion"
34-
const val material = "com.google.android.material:material:1.3.0-alpha03"
34+
const val material = "com.google.android.material:material:1.3.0-alpha04"
3535
const val preference = "androidx.preference:preference:1.1.1"
3636
const val recycler_view = "androidx.recyclerview:recyclerview:1.2.0-alpha06"
3737
const val recycler_view_selection = "androidx.recyclerview:recyclerview-selection:1.1.0-rc03"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=22449f5231796abd892c98b2a07c9ceebe4688d192cd2d6763f8e3bf8acbedeb
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip
3+
distributionSha256Sum=89714fb5db6bd66fa5a2302f58d26dc33ecd3db36b24a42d84ff6ba99551eeda
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8-rc-1-all.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)