-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle.kts
86 lines (75 loc) · 2.67 KB
/
build.gradle.kts
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
import com.android.build.gradle.internal.cxx.configure.gradleLocalProperties
import java.util.Properties
plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
}
android {
namespace = "com.project.cityfarmer"
compileSdk = 34
defaultConfig {
applicationId = "com.project.cityfarmer"
minSdk = 24
targetSdk = 34
versionCode = 1
versionName = "1.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
buildConfigField("String","server_url",getApiKey("server_url"))
buildConfigField("String","weather_api_key",getApiKey("weather_api_key"))
}
viewBinding {
enable = true
}
dataBinding {
enable = true
}
buildFeatures {
buildConfig = true
}
buildTypes {
release {
isMinifyEnabled = 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"
}
}
fun getApiKey(propertyKey:String) : String {
return gradleLocalProperties(rootDir).getProperty(propertyKey)
}
dependencies {
implementation("androidx.core:core-ktx:1.12.0")
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("com.google.android.material:material:1.11.0")
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
// api
implementation("com.squareup.retrofit2:retrofit:2.9.0")
implementation("com.squareup.retrofit2:converter-gson:2.9.0") // JSON 변환
implementation("com.squareup.okhttp3:okhttp:4.10.0") // OkHttp 라이브러리
implementation("com.squareup.okhttp3:logging-interceptor:3.11.0")
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.12.0"))
implementation("com.squareup.okhttp3:okhttp-urlconnection:4.9.0")
// 위치
implementation("com.google.android.gms:play-services-location:19.0.1")
//glide
implementation("com.github.bumptech.glide:glide:4.14.2")
annotationProcessor("com.github.bumptech.glide:compiler:4.14.2")
//photopicker
// Java language implementation
implementation("androidx.activity:activity:1.7.0")
// Kotlin
implementation("androidx.activity:activity-ktx:1.7.0")
implementation("io.github.ParkSangGwon:tedpermission-normal:3.3.0")
}