-
-
Save codeforfun-jp/b24d7925671d173ac0408c40006f1f52 to your computer and use it in GitHub Desktop.
Android Quiz App Kotlin 3-1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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