Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build.gradle « cross-tab-drag-and-drop - github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fd907ec293dc0fb49b13aa1cc9631fdd6dc54870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
apply plugin: 'com.android.library'

android {
    compileSdk 34
    namespace 'it.niedermann.android.crosstabdnd'

    defaultConfig {
        minSdkVersion 22
        targetSdk 34
    }
}

dependencies {
    implementation "com.google.android.material:material:$rootProject.materialVersion"
}