Vectras-VM-Android/build.gradle
An Bui c9a5e10c81
Merge pull request #43 from AnBui2004/dependabot/gradle/org.jetbrains.kotlin-kotlin-gradle-plugin-2.3.0
Bump org.jetbrains.kotlin:kotlin-gradle-plugin from 2.2.21 to 2.3.0
2025-12-22 22:34:34 +07:00

37 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.0'
}
repositories {
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.13.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// Android Gradle plugin
// Add other classpaths like Google Services and Firebase Crashlytics if needed here.
classpath 'com.google.gms:google-services:4.4.4' // assuming you need it for your project
classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.6'
// assuming you need it for project
}
}
task clean(type: 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)
}