From 4bbbdfcb02eff0c9d62fd8bff5a6856936824448 Mon Sep 17 00:00:00 2001 From: bngsh Date: Thu, 8 Dec 2022 18:31:38 +0900 Subject: [PATCH] =?UTF-8?q?:bookmark:=20local.properties=20missing=20?= =?UTF-8?q?=EC=97=90=EB=9F=AC=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- presentation/build.gradle | 5 ++--- presentation/src/main/AndroidManifest.xml | 3 --- .../src/main/java/com/whyranoid/presentation/MainActivity.kt | 4 ++++ signin/build.gradle | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/presentation/build.gradle b/presentation/build.gradle index 6652f524..b87fed93 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 b059e8ed..6e2ef359 100644 --- a/presentation/src/main/AndroidManifest.xml +++ b/presentation/src/main/AndroidManifest.xml @@ -11,9 +11,6 @@ android:exported="true"> -