-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.gradle
49 lines (47 loc) · 1.5 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
44
45
46
47
48
49
buildscript {
ext.kotlin_version = '1.3.61'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
jcenter()
maven { url 'https://jitpack.io' }
}
}
subprojects {
buildscript {
ext {
app_id = 'com.dimension.tessercube'
min_version = 21
target_version = 29
version_code = 1
version_name = '1.0'
appcenter = [
enabled : project.hasProperty('appCenterEnabled') ? appCenterEnabled : 'false',
id : project.hasProperty('appCenterId') ? appCenterId : ''
]
signConfig = [
keyStore : project.hasProperty('signKeyStore') ? signKeyStore : './key.jks',
keyStorePassword : project.hasProperty('signKeyStorePassword') ? signKeyStorePassword : 'password',
keyAlias : project.hasProperty('signKeyAlias') ? signKeyAlias : 'alias',
keyPassword : project.hasProperty('signKeyPassword') ? signKeyPassword : 'password'
]
dependencyVersion = [
appCenter : "1.11.4",
requery : "1.5.1",
glide : "4.10.0",
leakcanary : "2.0",
bouncycastle : '1.62'
]
}
}
}