We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 622b3de commit 2b06391Copy full SHA for 2b06391
app/build.gradle.kts
@@ -10,16 +10,12 @@ plugins {
10
alias(libs.plugins.booket.android.hilt)
11
}
12
13
-val localPropertiesFile = rootProject.file("local.properties")
14
-val localProperties = Properties()
15
-localProperties.load(FileInputStream(localPropertiesFile))
16
-
17
android {
18
namespace = "com.ninecraft.booket"
19
20
defaultConfig {
21
buildConfigField("String", "KAKAO_NATIVE_APP_KEY", getApiKey("KAKAO_NATIVE_APP_KEY"))
22
- manifestPlaceholders["KAKAO_NATIVE_APP_KEY"] = (localProperties["KAKAO_NATIVE_APP_KEY"] as String).trim('"')
+ manifestPlaceholders["KAKAO_NATIVE_APP_KEY"] = getApiKey("KAKAO_NATIVE_APP_KEY").trim('"')
23
24
25
buildTypes {
0 commit comments