-
Notifications
You must be signed in to change notification settings - Fork 51
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
Unable to merge dex #12
Comments
Same problem here =( too bad... can't fix it... multi dex is enabled and everything else is ok. |
Try this in your app's build.gradle . Tweak as needed project.configurations.all {
resolutionStrategy.eachDependency { details ->
def requested = details.requested
if (requested.group == 'com.android.support') {
if (!requested.name.startsWith("multidex")) {
details.useVersion rootProject.ext.supportLibraryVersion
}
}
}
}
configurations {
compile.exclude group: 'org.jetbrains', module: 'annotations'
compile.exclude module: 'spring-core'
compile.exclude module: 'spring-web'
compile.exclude module: 'commons-logging'
}` |
Same here, @bmbariah solution doesn't work for me. |
Same issue as #11 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
My gradle file is as below
and this is the issue i am getting
The text was updated successfully, but these errors were encountered: