forked from scottyab/rootbeer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (36 loc) · 977 Bytes
/
build.gradle
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
42
43
44
apply from: './dependencies.gradle'
buildscript {
apply from: './dependencies.gradle'
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradlePluginVersion"
classpath "com.github.dcendents:android-maven-gradle-plugin:$mavenGradlePluginVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
def isReleaseBuild() {
return version.contains("SNAPSHOT") == false
}
allprojects {
version = VERSION_NAME
group = GROUP
repositories {
google()
mavenCentral()
}
}
subprojects {
// When updating the sdk version, please remember to change the circleci image to match
// .circle/config.yml
ext.compileSdkVer = 30
ext.buildToolsVer = "30.0.0"
ext.minSdkVer = 15
ext.targetSdkVer = 30
ext.ndkVersionVar = '22.1.7171670'
}
task clean(type: Delete) {
delete rootProject.buildDir
}