googlecodelabs / android-build-an-app-architecture-components

Other
266 stars 133 forks source link

Initial Setup: Manifest Merger Failed #17

Open kenxle opened 6 years ago

kenxle commented 6 years ago

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 commented 6 years ago

Is this issue addressed in the PR?

tomaszrykala commented 6 years ago

Yep, PR https://github.com/googlecodelabs/android-build-an-app-architecture-components/pull/6 was enough to fix the issue for me.