You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
609 B
23 lines
609 B
import static androidx.build.dependencies.DependenciesKt.* |
|
import androidx.build.LibraryGroups |
|
import androidx.build.LibraryVersions |
|
|
|
plugins { |
|
id("SupportAndroidLibraryPlugin") |
|
} |
|
|
|
dependencies { |
|
api(project(":annotation")) |
|
|
|
androidTestImplementation(TEST_RUNNER_TMP, libs.exclude_for_espresso) |
|
} |
|
|
|
supportLibrary { |
|
name = "Android Support HeifWriter" |
|
publish = true |
|
mavenVersion = LibraryVersions.SUPPORT_LIBRARY |
|
mavenGroup = LibraryGroups.HEIFWRITER |
|
inceptionYear = "2018" |
|
minSdkVersion = 'P' |
|
description = "Android Support HeifWriter for writing HEIF still images" |
|
}
|
|
|