| plugins { |
| id 'com.android.application' |
| id 'kotlin-android' |
| } |
| |
| android { |
| compileSdkVersion 30 |
| buildToolsVersion "30.0.2" |
| |
| defaultConfig { |
| applicationId "com.example.myapplication" |
| minSdkVersion 16 |
| targetSdkVersion 30 |
| versionCode 1 |
| versionName "1.0" |
| |
| testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" |
| } |
| } |
| |
| dependencies { |
| implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" |
| implementation 'androidx.core:core-ktx:1.2.0' |
| implementation 'androidx.appcompat:appcompat:1.1.0' |
| implementation group: 'com.google.android.material', name: 'material', version: '1.1.0' |
| releaseCompile group: 'androidx.constraintlayout', name: 'constraintlayout', version: '1.1.3' |
| compile group: 'androidx.navigation', name: 'navigation-fragment-ktx', version: '2.2.1' |
| api group: 'androidx.navigation', name: 'navigation-ui-ktx', version: '2.2.1' |
| testCompile group: 'junit', name: 'junit', version: '4.13' |
| androidTestCompile group: 'androidx.test.ext', name: 'junit', version: '1.1.1' |
| androidTestRuntime group: 'androidx.test.espresso', name: 'espresso-core', version: '3.2.0' |
| } |