안드로이드 디버그 빌드 정리

This commit is contained in:
2026-06-06 15:40:19 +09:00
parent 0f404b439e
commit fbdd87ec8b
10 changed files with 385 additions and 8 deletions

View File

@@ -1,6 +1,5 @@
plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
}
android {
@@ -14,8 +13,9 @@ android {
versionCode = 1
versionName = "0.1.0"
}
}
kotlin {
jvmToolchain(17)
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
}

View File

@@ -122,7 +122,7 @@ class MainActivity : Activity() {
setText(preferences.getString(key, defaultValue))
this.hint = hint
inputType = InputType.TYPE_CLASS_TEXT
singleLine = true
setSingleLine(true)
}
}