-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.gradle
58 lines (51 loc) · 1.62 KB
/
common.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
apply plugin: "com.android.library"
apply plugin: "kotlin-kapt"
android {
compileSdkVersion 33
namespace 'com.job.common'
defaultConfig {
minSdk 26
targetSdk 33
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles("consumer-rules.pro")
}
buildTypes {
release {
minifyEnabled false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}
buildFeatures {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.3.2"
}
}
dependencies {
implementation libs.androidx.core.ktx
implementation platform(libs.kotlin.bom)
implementation libs.androidx.lifecycle.ktx
implementation libs.androidx.activity.compose
implementation libs.androidx.lifecycle.viewModelCompose
implementation platform(libs.androidx.compose.bom)
implementation libs.androidx.compose.ui
implementation libs.androidx.compose.ui.graphics
implementation libs.androidx.compose.ui.tooling.preview
implementation libs.androidx.compose.material3
implementation libs.androidx.hilt.navigation.compose
debugImplementation libs.androidx.compose.ui.tooling
testImplementation libs.junit4
testImplementation libs.bundles.test
androidTestImplementation libs.androidx.test.junit
}