-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
94 lines (80 loc) · 2.75 KB
/
build.gradle.kts
File metadata and controls
94 lines (80 loc) · 2.75 KB
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
/*
* Copyright (C) 2017 Moez Bhatti <[email protected]>
* Copyright (C) 2025 Saalim Quadri <[email protected]>
*
* This file is part of QKSMS.
*
* QKSMS is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* QKSMS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with QKSMS. If not, see <http://www.gnu.org/licenses/>.
*/
plugins {
alias(libs.plugins.android.library)
alias(libs.plugins.kotlin.android)
id("kotlin-kapt")
}
android {
namespace = "org.prauga.messages.data"
compileSdk {
version = release(36)
}
defaultConfig {
minSdk = 23
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
}
dependencies {
// androidx
implementation(libs.androidx.appcompat)
implementation(libs.androidx.ktx)
implementation(libs.androidx.exifinterface)
implementation(libs.androidx.documentfile)
// glide
implementation(libs.glide)
kapt(libs.compiler)
// dagger
implementation(libs.dagger)
implementation(libs.dagger.android.support)
kapt(libs.dagger.android.processor)
kapt(libs.dagger.compiler)
implementation(libs.javax.annotation.api)
// rxjava
implementation(libs.rxandroid)
implementation(libs.rxjava)
implementation(libs.rxkotlin)
// testing
androidTestImplementation("androidx.test.espresso:espresso-core:3.1.0-alpha3") {
exclude(group = "com.android.support", module = "support-annotations")
}
androidTestImplementation(libs.mockito.android)
testImplementation(libs.androidx.runner)
testImplementation(libs.junit)
testImplementation(libs.mockito.core)
// coroutines
implementation(libs.kotlinx.coroutines.core)
implementation(libs.kotlinx.coroutines.rx2)
implementation(libs.kotlinx.coroutines.reactive)
implementation(libs.datashare)
implementation(libs.rx.preferences)
implementation(libs.timber)
implementation(libs.moshi)
kapt(libs.moshi.kotlin.codegen)
implementation(libs.okhttp3.okhttp)
implementation(libs.libphonenumber.android)
implementation(libs.kotlin.stdlib)
// work manager
implementation(libs.androidx.work.runtime.ktx)
implementation(libs.androidx.work.rxjava2)
implementation(project(":android-smsmms"))
implementation(project(":common"))
implementation(project(":domain"))
}