Skip to content
This repository has been archived by the owner on Aug 13, 2023. It is now read-only.

Initial Setup: Manifest Merger Failed #17

Open
kenxle opened this issue May 8, 2018 · 2 comments
Open

Initial Setup: Manifest Merger Failed #17

kenxle opened this issue May 8, 2018 · 2 comments

Comments

@kenxle
Copy link

kenxle commented May 8, 2018

Needed to add this to the bottom of the module app build.gradle
Android Studio 3.1.2

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

rvail2 commented May 15, 2018

Is this issue addressed in the PR?

@tomaszrykala
Copy link

Yep, PR #6 was enough to fix the issue for me.

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

No branches or pull requests

3 participants