mysu_anon/build.gradle

28 lines
521 B
Groovy
Raw Normal View History

2022-09-07 14:31:20 -05:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.0'
2022-09-17 14:35:31 -05:00
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.5.2"
2022-09-07 14:31:20 -05:00
}
}
allprojects {
repositories {
mavenCentral()
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
2022-09-18 01:39:59 -05:00
apkName = 'mynero'
2022-09-07 14:31:20 -05:00
}