-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Kotlin DSL - 'android:example-app' (#1940)
* 'android:example-app'. Gradle 5.6.1 - sync with root project * Kotlin DSL - 'android:example-app'
- Loading branch information
Showing
9 changed files
with
129 additions
and
95 deletions.
There are no files selected for viewing
32 changes: 0 additions & 32 deletions
32
ui/kotlinx-coroutines-android/example-app/app/build.gradle
This file was deleted.
Oops, something went wrong.
34 changes: 34 additions & 0 deletions
34
ui/kotlinx-coroutines-android/example-app/app/build.gradle.kts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. | ||
*/ | ||
|
||
plugins { | ||
id("com.android.application") | ||
kotlin("android") | ||
kotlin("android.extensions") | ||
} | ||
|
||
android { | ||
compileSdkVersion = "29" | ||
defaultConfig { | ||
applicationId = "com.example.app" | ||
minSdkVersion(14) | ||
targetSdkVersion(29) | ||
versionCode = 1 | ||
versionName = "1.0" | ||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation("androidx.appcompat:appcompat:1.0.2") | ||
implementation("androidx.constraintlayout:constraintlayout:1.1.3") | ||
implementation("com.google.android.material:material:1.0.0") | ||
|
||
implementation(kotlin("stdlib-jdk7")) | ||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:${property("coroutines_version")}") | ||
|
||
testImplementation("junit:junit:4.12") | ||
androidTestImplementation("androidx.test:runner:1.2.0") | ||
androidTestImplementation("androidx.test.espresso:espresso-core:3.2.0") | ||
} |
This file contains 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
Binary file modified
BIN
+57.3 KB
(100%)
ui/kotlinx-coroutines-android/example-app/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
6 changes: 1 addition & 5 deletions
6
ui/kotlinx-coroutines-android/example-app/gradle/wrapper/gradle-wrapper.properties
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# | ||
# Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. | ||
# | ||
|
||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.1-all.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip |
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include(":app") |