-
Notifications
You must be signed in to change notification settings - Fork 100
/
dependencies.gradle
102 lines (83 loc) · 3.42 KB
/
dependencies.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
android {
compileSdkVersion 30
buildToolsVersion "30.0.3"
defaultConfig {
minSdkVersion 16
targetSdkVersion 30
versionCode 1
versionName "1.0.0"
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
kapt {
arguments {
arg("AROUTER_MODULE_NAME", project.getName())
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildFeatures{
dataBinding = true
// for view binding :
// viewBinding = true
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
def nav_version = "2.3.5"
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'androidx.multidex:multidex:2.0.1'
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.1.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.google.android.material:material:1.2.1'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
implementation "androidx.navigation:navigation-fragment-ktx:$nav_version"
implementation "androidx.navigation:navigation-ui-ktx:$nav_version"
implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
//implementation 'com.github.bumptech.glide:glide:4.11.0'
//annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
//paging3
implementation 'androidx.paging:paging-runtime:3.0.0-beta01'
implementation 'androidx.paging:paging-common:3.0.0-beta01'
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2"
implementation "androidx.viewpager2:viewpager2:1.0.0"
implementation "com.alibaba:arouter-api:1.5.0"
kapt "com.alibaba:arouter-compiler:1.2.2"
//room
implementation 'androidx.room:room-runtime:2.3.0-alpha01'
implementation 'androidx.room:room-common:2.3.0-alpha01'
implementation 'androidx.room:room-ktx:2.3.0-alpha01'
kapt "androidx.room:room-compiler:2.3.0-alpha01"
// Koin for Kotlin
implementation "org.koin:koin-core:$koin_version"
implementation "org.koin:koin-core-ext:$koin_version"
// Koin for AndroidX
implementation "org.koin:koin-androidx-scope:$koin_version"
implementation "org.koin:koin-androidx-viewmodel:$koin_version"
implementation "org.koin:koin-androidx-fragment:$koin_version"
implementation "org.koin:koin-androidx-ext:$koin_version"
implementation 'com.scwang.smart:refresh-layout-kernel:2.0.3'
//gson
implementation("com.google.code.gson:gson:2.8.6")
//coil
implementation("io.coil-kt:coil:1.2.1")
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9'
}