diff options
Diffstat (limited to 'dokka-integration-tests/gradle/projects/it-android-0/build.gradle.kts')
-rw-r--r-- | dokka-integration-tests/gradle/projects/it-android-0/build.gradle.kts | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/dokka-integration-tests/gradle/projects/it-android-0/build.gradle.kts b/dokka-integration-tests/gradle/projects/it-android-0/build.gradle.kts new file mode 100644 index 00000000..d9d9e6be --- /dev/null +++ b/dokka-integration-tests/gradle/projects/it-android-0/build.gradle.kts @@ -0,0 +1,22 @@ +/* + * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. + */ + +plugins { + id("com.android.library") + id("org.jetbrains.dokka") + kotlin("android") +} + +apply(from = "../template.root.gradle.kts") + +android { + defaultConfig { + minSdkVersion(21) + setCompileSdkVersion(29) + } +} + +dependencies { + implementation("androidx.appcompat:appcompat:1.1.0") +} |