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

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

android {
    compileSdkVersion 31
    buildToolsVersion "31.0.0"
    defaultConfig {
        minSdkVersion 22
        targetSdkVersion 31
    }
    namespace 'it.niedermann.android.tablayouthelper'
}

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