Files
Archive/yass/android/build.gradle
T
2024-11-19 19:38:50 +01:00

33 lines
704 B
Groovy

/**
* Copyright (C) 2023 Chilledheart
*
* This code is licensed under the MIT license (MIT) (http://opensource.org/licenses/MIT)
*/
/** Top-level build file where you can add configuration options common to all sub-projects/modules */
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.3.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
ext {
minSdkVersion = 24
targetSdkVersion = 30
compileSdkVersion = 34
}