From 07930d416d490307777a1e2f69ef35e08c16dacd Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Thu, 28 Jan 2021 13:38:30 +0530 Subject: [PATCH] build(app): remove kotlinCompilerVersion It is deprecated now 'ComposeOptions.kotlinCompilerVersion is deprecated. Compose now uses the kotlin compiler defined in your buildscript.' Signed-off-by: Harsh Shandilya --- app/build.gradle.kts | 1 - 1 file changed, 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 0642b225..28137a78 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -21,7 +21,6 @@ android { buildFeatures.compose = true composeOptions { - kotlinCompilerVersion = "1.4.21" kotlinCompilerExtensionVersion = Dependencies.COMPOSE_VERSION } }