2022-09-07 13:31:20 -06:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
2023-12-06 09:49:36 -07:00
|
|
|
ext.kotlin_version = '1.9.21'
|
2022-09-07 13:31:20 -06:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
google()
|
|
|
|
}
|
|
|
|
dependencies {
|
2023-12-06 09:49:36 -07:00
|
|
|
classpath 'com.android.tools.build:gradle:8.1.3'
|
2022-09-17 13:35:31 -06:00
|
|
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.5.2"
|
2023-12-06 09:49:36 -07:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2022-09-17 13:35:31 -06:00
|
|
|
|
2022-09-07 13:31:20 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
google()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|
|
|
|
|
|
|
|
ext {
|
2022-09-18 00:39:59 -06:00
|
|
|
apkName = 'mynero'
|
2022-09-07 13:31:20 -06:00
|
|
|
}
|