| import androidx.build.LibraryGroups |
| import androidx.build.LibraryVersions |
| import androidx.build.Publish |
| |
| import static androidx.build.dependencies.DependenciesKt.ANDROIDX_TEST_CORE |
| import static androidx.build.dependencies.DependenciesKt.ANDROIDX_TEST_EXT_JUNIT |
| import static androidx.build.dependencies.DependenciesKt.ANDROIDX_TEST_RULES |
| import static androidx.build.dependencies.DependenciesKt.ANDROIDX_TEST_RUNNER |
| |
| plugins { |
| id("AndroidXPlugin") |
| id("com.android.library") |
| } |
| |
| dependencies { |
| implementation("androidx.core:core:1.1.0") |
| implementation("androidx.collection:collection:1.0.0") |
| implementation("androidx.concurrent:concurrent-futures:1.0.0") |
| api("androidx.annotation:annotation:1.1.0") |
| |
| androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT) |
| androidTestImplementation(ANDROIDX_TEST_CORE) |
| androidTestImplementation(ANDROIDX_TEST_RUNNER) |
| androidTestImplementation(ANDROIDX_TEST_RULES) |
| } |
| |
| android { |
| defaultConfig { |
| minSdkVersion 16 |
| } |
| buildFeatures { |
| aidl = true |
| } |
| } |
| |
| androidx { |
| name = "AndroidX message browser library" |
| publish = Publish.SNAPSHOT_AND_RELEASE |
| mavenGroup = LibraryGroups.MESSAGEBROWSER |
| inceptionYear = "2019" |
| description = "Message Browser" |
| } |
| |