Created
November 23, 2021 11:10
-
-
Save vaibhavgoyal09/80867f4c3279477ac95efabf04afafdc to your computer and use it in GitHub Desktop.
This file contains hidden or 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.0.4' | |
| ktorVersion = "1.6.5" | |
| } | |
| repositories { | |
| google() | |
| mavenCentral() | |
| } | |
| dependencies { | |
| classpath "com.android.tools.build:gradle:7.0.3" | |
| classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31" | |
| classpath 'com.google.dagger:hilt-android-gradle-plugin:2.39.1' | |
| // NOTE: Do not place your application dependencies here; they belong | |
| // in the individual module build.gradle files | |
| } | |
| } | |
| 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