22 lines
696 B
Groovy
22 lines
696 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
buildscript {
|
|
dependencies {
|
|
classpath "io.realm:realm-gradle-plugin:10.11.1"
|
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.5.3"
|
|
}
|
|
}
|
|
plugins {
|
|
id 'com.android.application' version '7.4.2' apply false
|
|
id 'com.android.library' version '7.4.2' apply false
|
|
id 'org.jetbrains.kotlin.android' version '1.8.0' apply false
|
|
id 'com.google.dagger.hilt.android' version '2.44' apply false
|
|
}
|
|
|
|
static def androidCompileSdk() { return 33 }
|
|
allprojects {
|
|
ext.gdxVersion = "1.11.0"
|
|
ext.gwtVersion = "2.8.2"
|
|
ext.slf4jVersion = "1.7.28"
|
|
} |