Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DPMS-11302 Add branch of running diff calculations in the UI-Thread #1

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions anvil-cardview-v7/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ android {
}

defaultConfig {
minSdkVersion 15
minSdkVersion 21
targetSdkVersion 27

missingDimensionStrategy 'api', 'sdk15'
missingDimensionStrategy 'api', 'sdk21'
}

lintOptions {
Expand Down
32 changes: 2 additions & 30 deletions anvil/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ android {
}

defaultConfig {
minSdkVersion 15
minSdkVersion 21
targetSdkVersion 27
}

Expand All @@ -27,12 +27,6 @@ android {

flavorDimensions "api"
productFlavors {
sdk15 {
minSdkVersion 15
}
sdk19 {
minSdkVersion 19
}
sdk21 {
minSdkVersion 21
}
Expand Down Expand Up @@ -80,24 +74,6 @@ def fixPom(pom) {

publishing {
publications {
sdk15(MavenPublication) {
groupId project.group
version project.version
artifactId POM_ARTIFACT_SDK15_ID
artifact "$buildDir/outputs/aar/$POM_ARTIFACT_SDK15_ID-release.aar"
artifact sourcesJar
artifact javadocJar
fixPom(pom)
}
sdk19(MavenPublication) {
groupId project.group
version project.version
artifactId POM_ARTIFACT_SDK19_ID
artifact "$buildDir/outputs/aar/$POM_ARTIFACT_SDK19_ID-release.aar"
artifact sourcesJar
artifact javadocJar
fixPom(pom)
}
sdk21(MavenPublication) {
groupId project.group
version project.version
Expand All @@ -113,7 +89,7 @@ publishing {
bintray {
user = project.hasProperty('bintrayUser') ? bintrayUser : ''
key = project.hasProperty('bintrayApiKey') ? bintrayApiKey : ''
publications = ['sdk15', 'sdk19', 'sdk21']
publications = ['sdk21']
pkg {
repo = 'maven'
name = POM_PACKAGE_NAME
Expand All @@ -123,10 +99,6 @@ bintray {
publish = true
version {
name = project.version
gpg {
sign = true
passphrase = project.hasProperty('bintrayGpgPassword') ? bintrayGpgPassword : ''
}
mavenCentralSync {
sync = true
user = project.hasProperty('bintrayOssUser') ? bintrayOssUser : ''
Expand Down
Loading