blob: 76c4bfe0f9903d0934c0bcafcf6406a7c99b9a37 [file] [log] [blame]
/*
* Copyright (C) 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-android-extensions'
apply plugin: 'kotlin-kapt'
android {
compileSdkVersion rootProject.latestCompileSdk
defaultConfig {
applicationId "androidx.databinding.kotlintestapp"
minSdkVersion 14
targetSdkVersion rootProject.latestCompileSdk
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildFeatures {
dataBinding = true
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
dependencies {
def supportVersion = "1.0.0"
def lifecycleVersion = "2.0.0"
def testingVersion = "1.1.0"
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(":library1")
implementation "org.jetbrains.kotlin:kotlin-stdlib:$rootProject.kotlinVersion"
implementation "androidx.lifecycle:lifecycle-runtime:$lifecycleVersion"
implementation "androidx.lifecycle:lifecycle-livedata:$lifecycleVersion"
implementation "androidx.appcompat:appcompat:$supportVersion"
testImplementation 'junit:junit:4.12'
androidTestImplementation("androidx.test:runner:$testingVersion") {
exclude module: 'support-annotations'
}
androidTestImplementation("androidx.test:rules:$testingVersion") {
exclude module: 'support-annotations'
}
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0') {
exclude module: 'support-annotations'
}
}