Skip to content

Instantly share code, notes, and snippets.

@Limitinit
Forked from sasssass/build.gradle
Created December 20, 2023 09:18
Show Gist options
  • Save Limitinit/51198775ee50d4f040a54eaa43833d2d to your computer and use it in GitHub Desktop.
Save Limitinit/51198775ee50d4f040a54eaa43833d2d to your computer and use it in GitHub Desktop.
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.4.21"
repositories {
google()
jcenter()
}
dependencies {
def gradle = '7.0.0-alpha04'
classpath "com.android.tools.build:gradle:$gradle"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
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