31 lines
856 B
Groovy
Executable File
31 lines
856 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.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
|
|
}
|