| import androidx.build.Publish |
| |
| plugins { |
| id("AndroidXPlugin") |
| id("com.android.library") |
| } |
| |
| dependencies { |
| api(project(":vectordrawable:vectordrawable")) |
| api(project(":core:core-animation")) |
| implementation("androidx.collection:collection:1.1.0") |
| |
| androidTestImplementation(libs.testExtJunit) |
| androidTestImplementation(libs.testCore) |
| androidTestImplementation(libs.testRunner) |
| androidTestImplementation(libs.testRules) |
| androidTestImplementation(libs.truth) |
| androidTestImplementation(libs.espressoCore, excludes.espresso) |
| androidTestImplementation(project(":core:core-animation-testing")) |
| } |
| |
| android { |
| compileOptions { |
| sourceCompatibility = JavaVersion.VERSION_1_8 |
| targetCompatibility = JavaVersion.VERSION_1_8 |
| } |
| defaultConfig { |
| // This disables the builds tools automatic vector -> PNG generation |
| generatedDensities = [] |
| } |
| |
| aaptOptions { |
| additionalParameters("--no-version-vectors") |
| } |
| namespace "androidx.vectordrawable.seekable" |
| } |
| |
| androidx { |
| name = "Android SeekableAnimatedVectorDrawable" |
| publish = Publish.SNAPSHOT_AND_RELEASE |
| mavenVersion = LibraryVersions.VECTORDRAWABLE_SEEKABLE |
| inceptionYear = "2020" |
| description = "Android SeekableAnimatedVectorDrawable" |
| } |