Created
February 25, 2019 08:09
-
-
Save m4kvn/1dc38f288d6862341421c2a4e348ccb2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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") | |
| kotlin("android") | |
| } | |
| android { | |
| common() | |
| defaultConfig { | |
| applicationId = "com.m4kvn.myapplication" | |
| versionCode = 1 | |
| versionName = "1.0.0" | |
| testInstrumentationRunner = "android.support.test.runner.AndroidJUnitRunner" | |
| } | |
| } | |
| dependencies { app() } // AndroidApplication用の依存関係を読み込む |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment