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 {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
google()
|
|
|
|
}
|
|
|
|
dependencies {
|
2023-02-11 03:15:35 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:7.4.1'
|
2022-09-17 19:35:31 +00:00
|
|
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.5.2"
|
|
|
|
|
2022-09-07 19:31:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
google()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|
|
|
|
|
|
|
|
ext {
|
2022-09-18 06:39:59 +00:00
|
|
|
apkName = 'mynero'
|
2022-09-07 19:31:20 +00:00
|
|
|
}
|