From a3e05036138938ea8ab36ca3411f7e82df7184c7 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Thu, 27 Aug 2020 02:50:28 +0530 Subject: [PATCH 1/3] build: update compose Signed-off-by: Harsh Shandilya --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index d8fa6237..7665d2d2 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext { - compose_version = '0.1.0-dev17' + compose_version = '1.0.0-alpha01' } ext.kotlin_version = "1.4.0" repositories { From 4bc184f06c76307e3f4824e2aff0e371a469d0f0 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Thu, 27 Aug 2020 02:50:39 +0530 Subject: [PATCH 2/3] build: update AGP Signed-off-by: Harsh Shandilya --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 7665d2d2..43aa6cec 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ buildscript { jcenter() } dependencies { - classpath "com.android.tools.build:gradle:4.2.0-alpha07" + classpath "com.android.tools.build:gradle:4.2.0-alpha08" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" // NOTE: Do not place your application dependencies here; they belong From 44d8ee902a022bea8118c0b483145aaf8a8db593 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Thu, 27 Aug 2020 02:53:46 +0530 Subject: [PATCH 3/3] build: update androidx and material Signed-off-by: Harsh Shandilya --- app/build.gradle | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 8e1e7d46..e47d19f5 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -45,10 +45,9 @@ tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach { dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" - implementation 'androidx.core:core-ktx:1.3.1' - implementation 'androidx.appcompat:appcompat:1.2.0' - implementation 'com.google.android.material:material:1.2.0' + implementation 'androidx.core:core-ktx:1.5.0-alpha02' + implementation 'androidx.appcompat:appcompat:1.3.0-alpha02' + implementation 'com.google.android.material:material:1.3.0-alpha02' implementation "androidx.compose.foundation:foundation:$compose_version" implementation "androidx.compose.foundation:foundation-layout:$compose_version" implementation "androidx.compose.foundation:foundation-text:$compose_version" @@ -73,7 +72,7 @@ dependencies { implementation "androidx.compose.animation:animation-core:$compose_version" implementation "androidx.ui:ui-tooling:$compose_version" testImplementation 'junit:junit:4.13' - androidTestImplementation 'androidx.test.ext:junit:1.1.1' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' + androidTestImplementation 'androidx.test.ext:junit:1.1.2-alpha05' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0-alpha05' androidTestImplementation "androidx.ui:ui-test:$compose_version" }