-
Notifications
You must be signed in to change notification settings - Fork 18
/
build.gradle
48 lines (42 loc) · 1.46 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
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
android {
compileSdkVersion Versions.compileSdk
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}
defaultConfig {
applicationId "com.jv.news"
minSdkVersion 23
targetSdkVersion Versions.targetSdk
multiDexEnabled true
versionCode 2
versionName "1.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation "androidx.legacy:legacy-support-v13:1.0.0"
implementation "androidx.palette:palette-ktx:1.0.0"
implementation "androidx.browser:browser:1.2.0"
implementation "com.squareup.retrofit2:retrofit:2.7.1"
implementation "com.squareup.retrofit2:converter-gson:2.4.0"
implementation "com.squareup.okhttp3:logging-interceptor:4.5.0"
implementation "com.github.bumptech.glide:glide:4.11.0"
kapt "com.github.bumptech.glide:compiler:4.9.0"
implementation "com.thoughtbot:expandablecheckrecyclerview:1.4"
implementation project(':helium-core')
implementation project(':helium-ui')
implementation project(':helium-navigation')
}