mirror of
https://github.com/selfxyz/self.git
synced 2026-04-05 03:00:53 -04:00
45 lines
1.1 KiB
Groovy
45 lines
1.1 KiB
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext {
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
|
minSdkVersion rootProject.ext.minSdkVersion
|
|
buildToolsVersion rootProject.ext.buildToolsVersion
|
|
|
|
// kotlin_version = '1.7.20'
|
|
// We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
|
|
// ndkVersion = "23.1.7779620"
|
|
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
mavenCentral()
|
|
mavenLocal()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:8.1.0'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
|
|
google()
|
|
jcenter()
|
|
mavenCentral()
|
|
mavenLocal()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|