diff --git a/presentation/build.gradle b/presentation/build.gradle
index 6652f52..b87fed9 100644
--- a/presentation/build.gradle
+++ b/presentation/build.gradle
@@ -9,7 +9,6 @@ plugins {
Properties properties = new Properties()
properties.load(project.rootProject.file("local.properties").newDataInputStream())
-def naver_map_client_id = properties.getProperty("naver.map.client.id")
android {
namespace "com.whyranoid.presentation"
@@ -19,10 +18,10 @@ android {
minSdk 23
targetSdk 33
+ buildConfigField "String", "NAVER_MAP_CLIENT_ID", properties.getOrDefault("naver.map.client.id", "\"\"")
+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
-
- manifestPlaceholders = [naverMapClientId: naver_map_client_id]
}
buildTypes {
diff --git a/presentation/src/main/AndroidManifest.xml b/presentation/src/main/AndroidManifest.xml
index b059e8e..6e2ef35 100644
--- a/presentation/src/main/AndroidManifest.xml
+++ b/presentation/src/main/AndroidManifest.xml
@@ -11,9 +11,6 @@
android:exported="true">
-