| import static androidx.build.dependencies.DependenciesKt.* |
| import androidx.build.LibraryGroups |
| import androidx.build.LibraryVersions |
| |
| plugins { |
| id("AndroidXPlugin") |
| id("com.android.library") |
| } |
| |
| dependencies { |
| api(project(":core")) |
| |
| androidTestImplementation(TEST_EXT_JUNIT) |
| androidTestImplementation(TEST_CORE) |
| androidTestImplementation(TEST_RUNNER) |
| androidTestImplementation(TEST_RULES) |
| androidTestImplementation(ESPRESSO_CORE, libs.exclude_for_espresso) |
| } |
| |
| android { |
| sourceSets { |
| main.res.srcDir 'res' |
| } |
| } |
| |
| androidx { |
| name = "Android Percent Support Library" |
| publish = true |
| mavenVersion = LibraryVersions.PERCENTLAYOUT |
| mavenGroup = LibraryGroups.PERCENTLAYOUT |
| inceptionYear = "2015" |
| description = "Android Percent Support Library" |
| } |