From a0d09d61756a180943024aebd2f2406b48d332a7 Mon Sep 17 00:00:00 2001 From: hansoo Date: Tue, 18 Mar 2025 15:43:52 +0900 Subject: [PATCH] =?UTF-8?q?=EC=95=88=EB=93=9C=EB=A1=9C=EC=9D=B4=EB=93=9C?= =?UTF-8?q?=20=EB=B9=8C=EB=93=9C=20=EC=84=A4=EC=A0=95=20=EC=97=85=EB=8D=B0?= =?UTF-8?q?=EC=9D=B4=ED=8A=B8:=20=EB=B9=8C=EB=93=9C=20=EB=B2=88=ED=98=B8?= =?UTF-8?q?=20=EC=B6=94=EA=B0=80=20=EB=B0=8F=20Gradle=20=EB=B2=84=EC=A0=84?= =?UTF-8?q?=20=EC=97=85=EB=8D=B0=EC=9D=B4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- android/app/build.gradle | 7 +++++++ android/build.gradle | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 01eb02e..38d214c 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -10,6 +10,8 @@ android { targetSdkVersion rootProject.ext.targetSdkVersion versionCode 1 versionName "1.0" + // 빌드 번호 추가 + buildConfigField "int", "BUILD_NUMBER", "1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" aaptOptions { // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps. @@ -22,6 +24,11 @@ android { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } + debug { + // 디버거 대기 방지 + debuggable false + jniDebuggable false + } } compileOptions { diff --git a/android/build.gradle b/android/build.gradle index eb16283..e70c176 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -7,7 +7,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:8.8.0' + classpath 'com.android.tools.build:gradle:8.9.0' classpath 'com.google.gms:google-services:4.4.2' // NOTE: Do not place your application dependencies here; they belong