Skip to content

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
tjdwjs23 authored Nov 10, 2023
1 parent 6386a6a commit 294d31f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@ android {
buildTypes {
release {
minifyEnabled false // ProGuard 비활성화
debuggable true
debuggable false // 디버깅 옵션 비활성화
jniDebuggable false
renderscriptDebuggable false
}
debug {
minifyEnabled false
debuggable true // 디버깅 옵션 활성화
jniDebuggable true
renderscriptDebuggable true
}
Expand Down

0 comments on commit 294d31f

Please sign in to comment.