Last active
June 2, 2022 16:41
-
-
Save Debdutta-Panda/4ca6e550a6458908b131dd6ba2fe5d98 to your computer and use it in GitHub Desktop.
Android Jetpack Compose Version Upgrade
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
buildscript { | |
ext { | |
compose_version = '1.1.1' | |
} | |
}// Top-level build file where you can add configuration options common to all sub-projects/modules. | |
plugins { | |
id 'com.android.application' version '7.2.1' apply false | |
id 'com.android.library' version '7.2.1' apply false | |
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false | |
} | |
task clean(type: Delete) { | |
delete rootProject.buildDir | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment