-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
54 lines (44 loc) · 1.34 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
50
51
52
53
54
apply plugin: 'com.android.application'
dependencies {
implementation group: 'org.jsoup', name: 'jsoup', version: '1.11.2'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
}
android {
compileSdkVersion 27
buildToolsVersion "27.0.3"
defaultConfig {
minSdkVersion 21
targetSdkVersion 27
applicationId "com.mbcdev.nextluas"
versionCode 230
versionName "2.3"
}
lintOptions {
abortOnError false
}
dexOptions {
if (System.getenv("CI") != null) {
println "Running CI: disabling preDexLibraries"
preDexLibraries = false
}
}
signingConfigs {
skipdet {
storeFile file("../scripts/release.keystore")
storePassword System.getenv("LT_RELEASE_PASSWORD")
keyAlias System.getenv("LT_RELEASE_ALIAS")
keyPassword System.getenv("LT_RELEASE_PASSWORD")
}
}
buildTypes {
release {
minifyEnabled false
proguardFile getDefaultProguardFile('proguard-android.txt')
proguardFile 'proguard.txt'
}
}
}
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'