1 /* 2 * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. 3 */ 4 <lambda>null5plugins { 6 id("com.android.application") 7 kotlin("android") 8 kotlin("android.extensions") 9 } 10 <lambda>null11android { 12 compileSdkVersion = "29" 13 defaultConfig { 14 applicationId = "org.jetbrains.kotlinx.animation" 15 minSdkVersion(14) 16 targetSdkVersion(29) 17 versionCode = 1 18 versionName = "1.0" 19 testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" 20 } 21 } 22 <lambda>null23dependencies { 24 implementation("androidx.appcompat:appcompat:1.0.2") 25 implementation("androidx.constraintlayout:constraintlayout:1.1.3") 26 implementation("com.google.android.material:material:1.0.0") 27 implementation("androidx.lifecycle:lifecycle-extensions:2.0.0") 28 29 implementation(kotlin("stdlib-jdk7")) 30 implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:${property("coroutines_version")}") 31 32 testImplementation("junit:junit:4.12") 33 androidTestImplementation("androidx.test:runner:1.2.0") 34 androidTestImplementation("androidx.test.espresso:espresso-core:3.2.0") 35 } 36