2022-09-07 19:31:20 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
2024-09-08 11:30:36 +00:00
|
|
|
ext.kotlin_version = '2.0.20'
|
2022-09-07 19:31:20 +00:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
google()
|
|
|
|
}
|
|
|
|
dependencies {
|
2024-09-08 11:30:36 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:8.5.2'
|
|
|
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.8.0"
|
2023-12-06 16:49:36 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2022-09-17 19:35:31 +00:00
|
|
|
|
2022-09-07 19:31:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
google()
|
2023-12-09 01:08:05 +00:00
|
|
|
maven { url 'https://jitpack.io' }
|
2022-09-07 19:31:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-08 11:30:36 +00:00
|
|
|
tasks.register('clean', Delete) {
|
|
|
|
delete rootProject.layout.buildDirectory
|
2022-09-07 19:31:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ext {
|
2022-09-18 06:39:59 +00:00
|
|
|
apkName = 'mynero'
|
2022-09-07 19:31:20 +00:00
|
|
|
}
|