Files
Ontime/OnTime_User_live/build.gradle
2026-04-01 11:55:47 +07:00

32 lines
996 B
Groovy
Executable File

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
// Android Gradle Plugin compatible with Gradle 8.x and JDK 21
classpath 'com.android.tools.build:gradle:8.5.0'
classpath 'com.jakewharton:butterknife-gradle-plugin:9.0.0-rc2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"
classpath 'com.google.gms:google-services:4.4.2'
// Realm plugin variant that uses the new AGP transformer API
classpath 'io.realm:realm-gradle-plugin:10.14.0-transformer-api'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}