forked from scottyab/rootbeer
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathbuild.gradle
43 lines (36 loc) · 1 KB
/
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
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-android-extensions:$kotlinVersion"
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 = 34
ext.minSdkVer = 15
ext.targetSdkVer = 34
ext.ndkVersionVar = '25.2.9519653'
}
task clean(type: Delete) {
delete rootProject.buildDir
}