android-build-an-app-architecture-components
android-build-an-app-architecture-components copied to clipboard
Initial Setup: Manifest Merger Failed
trafficstars
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'
}
}
}
}
Is this issue addressed in the PR?
Yep, PR https://github.com/googlecodelabs/android-build-an-app-architecture-components/pull/6 was enough to fix the issue for me.