普通文本  |  30行  |  704 B

import static androidx.build.dependencies.DependenciesKt.*
import androidx.build.LibraryGroups
import androidx.build.LibraryVersions

plugins {
    id("SupportAndroidLibraryPlugin")
}

dependencies {
    api(project(":core"))

    androidTestImplementation(TEST_RUNNER_TMP, libs.exclude_for_espresso)
    androidTestImplementation(ESPRESSO_CORE_TMP, libs.exclude_for_espresso)
}

android {
    sourceSets {
        main.res.srcDir 'res'
    }
}

supportLibrary {
    name = "Android Percent Support Library"
    publish = true
    mavenVersion = LibraryVersions.SUPPORT_LIBRARY
    mavenGroup = LibraryGroups.PERCENTLAYOUT
    inceptionYear = "2015"
    description = "Android Percent Support Library"
}