-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
41 lines (35 loc) · 1.08 KB
/
build.gradle
File metadata and controls
41 lines (35 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//apply from: 'https://raw.githubusercontent.com/denzilferreira/aware-client/master/aware-core/aware.gradle'
buildscript {
ext.kotlin_version = '1.2.71'
repositories {
maven { url 'https://maven.fabric.io/public' }
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.4'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.60'
classpath 'com.google.gms:google-services:4.3.7'
classpath 'com.google.code.gson:gson:2.8.6'
// We recommend changing it to the latest version from our changelog:
// https://docs.fabric.io/android/changelog.html#fabric-gradle-plugin
classpath 'io.fabric.tools:gradle:1.29.0'
}
}
allprojects {
repositories {
maven { url 'https://maven.fabric.io/public' }
google()
jcenter()
}
}
rootProject.buildDir = './build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}