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: f741a324c34b4788d16cf09c770ec91b76b8b97d (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.tablayouthelper'

    defaultConfig {
        minSdk 22
        targetSdk 34
    }
}

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