Skip to content

Instantly share code, notes, and snippets.

@codeforfun-jp
Last active September 15, 2023 08:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codeforfun-jp/b24d7925671d173ac0408c40006f1f52 to your computer and use it in GitHub Desktop.
Save codeforfun-jp/b24d7925671d173ac0408c40006f1f52 to your computer and use it in GitHub Desktop.
Android Quiz App Kotlin 3-1
plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
}
android {
namespace = "com.example.quizapp"
/* 省略 */
buildFeatures {
viewBinding = true
}
}
dependencies {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment