Vectras-VM-Android/build.gradle
An Bui 74230ebfc0 4.3.5
- Open source licenses have been added.
- New virtual machine creator interface.
- Network card options have been added.
2026-07-13 18:09:40 +07:00

38 lines
1.1 KiB
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '2.3.10'
}
repositories {
mavenCentral()
google()
}
dependencies {
classpath libs.gradle
classpath libs.kotlin.gradle.plugin
// Android Gradle plugin
// Add other classpaths like Google Services and Firebase Crashlytics if needed here.
classpath libs.google.services // assuming you need it for your project
classpath libs.firebase.crashlytics.gradle
classpath libs.play.services.oss.licenses.plugin
// assuming you need it for project
}
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}
allprojects {
repositories {
mavenCentral()
google()
}
}
ext {
toolsVersion = properties.get('TOOLS_VERSION', '35.0.0')
compileApi = properties.get('COMPILE_API', 35)
targetApi = properties.get('TARGET_API', 28)
minApi = properties.get('MIN_API', 23)
}