diff --git a/.kotlin/sessions/kotlin-compiler-8903430381967892476.salive b/.kotlin/sessions/kotlin-compiler-8903430381967892476.salive new file mode 100644 index 0000000..e69de29 diff --git a/app/build.gradle b/app/build.gradle index d67b20e..bf9f47e 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -35,8 +35,6 @@ ext.codeCoverage = [ android { namespace 'com.wisnu.kurniawan.wallee' - compileSdkVersion project.ext.compileSdkVersion - buildToolsVersion project.ext.buildToolsVersion defaultConfig { minSdkVersion project.ext.minSdkVersion @@ -44,6 +42,7 @@ android { applicationId project.ext.appId versionCode project.ext.versionCode versionName project.ext.versionName + compileSdk project.ext.compileSdkVersion vectorDrawables { useSupportLibrary true @@ -259,9 +258,3 @@ dependencies { testImplementation libs.test.turbine } - -tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach { - kotlinOptions { - freeCompilerArgs += '-Xopt-in=kotlin.RequiresOptIn' - } -} diff --git a/build.gradle b/build.gradle index 497c262..80a9c34 100644 --- a/build.gradle +++ b/build.gradle @@ -23,7 +23,6 @@ allprojects { minSdkVersion = 21 targetSdkVersion = 34 compileSdkVersion = 34 - buildToolsVersion = "34.0.0" appId = project.properties["application_id"] versionCode = Integer.parseInt(project.properties["version_code"]) versionName = project.properties["version_name"]