-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
70 lines (63 loc) · 1.49 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
buildscript {
ext.kotlin_version = '1.9.23'
repositories {
mavenCentral()
google()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.android.tools.build:gradle:8.3.2'
}
}
allprojects {
repositories {
mavenCentral()
google()
}
}
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-parcelize'
android {
namespace "org.coffeetrain.doggifs"
compileSdk 34
defaultConfig {
minSdkVersion 21
targetSdkVersion 34
versionCode 2
versionName "1.0.1"
}
buildTypes {
release {
minifyEnabled false
}
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
buildFeatures {
viewBinding true
}
kotlin {
jvmToolchain(17)
}
lintOptions {
warningsAsErrors true
baselineFile(file("lint-baseline.xml"))
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "com.google.android.material:material:1.11.0"
implementation "com.squareup.flow:flow:1.0.0-alpha3"
implementation 'com.felipecsl:gifimageview:2.0.0'
implementation 'com.squareup.okio:okio:3.9.0'
implementation 'com.jakewharton.rxrelay:rxrelay:1.2.0'
implementation 'io.reactivex:rxandroid:1.2.1'
implementation 'io.reactivex:rxjava:1.3.3'
lintChecks("com.slack.lint:slack-lint-checks:0.7.1")
}