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

Publishing script should respect SUPPORT_LIB_VERSION_MIN #91

Closed
consp1racy opened this issue Mar 1, 2018 · 1 comment
Closed

Publishing script should respect SUPPORT_LIB_VERSION_MIN #91

consp1racy opened this issue Mar 1, 2018 · 1 comment
Assignees
Labels

Comments

@consp1racy
Copy link
Owner

consp1racy commented Mar 1, 2018

Version 2.0.1 automatically pull in appcompat-v7:27.1.0 as transitive dependency.

Temporary override - force a version of your own choice:

configurations.all {
    resolutionStrategy.eachDependency { DependencyResolveDetails details ->
        def requested = details.requested
        if (requested.group == 'com.android.support') {
            if (!requested.name.startsWith("multidex")) {
                details.useVersion "27.0.2"
            }
        }
    }
}

This will be fixed in next release.

@consp1racy consp1racy added the bug label Mar 1, 2018
@consp1racy consp1racy self-assigned this Mar 1, 2018
@consp1racy
Copy link
Owner Author

Will take effect in 2.0.2+.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant