This repository has been archived on 2023-11-18. You can view files and clone it, but cannot push or open issues or pull requests.
ha_client/android/build.gradle

38 lines
727 B
Groovy
Raw Normal View History

2018-09-10 00:34:52 +03:00
buildscript {
repositories {
google()
jcenter()
2020-02-11 14:06:19 +02:00
maven {
url 'https://maven.fabric.io/public'
}
2018-09-10 00:34:52 +03:00
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
classpath 'com.google.gms:google-services:4.3.3'
2020-02-11 14:06:19 +02:00
classpath 'io.fabric.tools:gradle:1.26.1'
2018-09-10 00:34:52 +03:00
}
}
allprojects {
repositories {
google()
jcenter()
2020-02-11 14:06:19 +02:00
maven {
url 'https://maven.fabric.io/public'
}
2018-09-10 00:34:52 +03:00
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}