aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/gradle/projects/it-android-0/build.gradle.kts
blob: d9d9e6be78c48e91031cf6112050f0c3b324e28e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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")
}