-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (33 loc) · 756 Bytes
/
build.gradle
File metadata and controls
38 lines (33 loc) · 756 Bytes
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
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5'
}
}
plugins {
id "com.jfrog.bintray" version "1.7"
}
allprojects {
repositories {
google()
jcenter()
}
}
apply from: "$rootDir/gradle/common-build.gradle"
ext {
versionName = "0.4.0"
versionCode = getCiBuildNumber()
compileSdkVersion = 29
buildToolsVersion = "29.0.2"
targetSdkVersion = 29
minSdkVersion = 14
renderscriptTargetApi = 24
dependencies = [
androidx: "1.1.0"
]
}