Skip to content

Instantly share code, notes, and snippets.

@MatrixMike
Created February 19, 2025 11:50
Show Gist options
  • Save MatrixMike/7027c9812a775ec1c4b3bc4abb51101f to your computer and use it in GitHub Desktop.
Save MatrixMike/7027c9812a775ec1c4b3bc4abb51101f to your computer and use it in GitHub Desktop.
test upgrading from old version A
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.6.21'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
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()
mavenCentral()
}
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment