mirror of
https://github.com/bolucat/Archive.git
synced 2026-04-23 00:17:16 +08:00
33 lines
704 B
Groovy
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
|
|
}
|