wifisetup/android/build.gradle
Raito Bezarius a759cc912f chore(nix): nixify
This does almost everything until the final build and fails there
because we are using too modern software with a too old project, I
think.

Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
2024-09-05 16:57:52 +02:00

29 lines
617 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
if(project.hasProperty("nixMavenRepo")) {
repositories {
maven { url = nixMavenRepo }
}
} else {
repositories {
google()
jcenter()
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.2'
}
}
allprojects {
if(project.hasProperty("nixMavenRepo")) {
repositories {
maven { url = nixMavenRepo }
}
} else {
repositories {
google()
jcenter()
}
}
}