mirror of
https://github.com/Skysamara/android-kotlin-fundamentals-apps.git
synced 2025-12-06 06:16:03 +00:00
63 lines
2.2 KiB
Groovy
Executable File
63 lines
2.2 KiB
Groovy
Executable File
/*
|
|
* Copyright 2018, The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
dataBinding {
|
|
enabled = true
|
|
}
|
|
defaultConfig {
|
|
applicationId 'com.example.android.navigation'
|
|
minSdkVersion 19
|
|
targetSdkVersion 28
|
|
vectorDrawables.useSupportLibrary = true
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
productFlavors {
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
|
implementation "androidx.appcompat:appcompat:$supportlibVersion"
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha1'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0-beta01'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'
|
|
implementation "com.google.android.material:material:1.0.0-rc01"
|
|
implementation"android.arch.navigation:navigation-fragment-ktx:$navigationVersion"
|
|
implementation "android.arch.navigation:navigation-ui-ktx:$navigationVersion"
|
|
implementation "com.google.android.material:material:$supportlibVersion"
|
|
}
|