Update Support Library Version#1174
Conversation
Support Library is updated to version 27.1.0 on February 2018 and I think FirebaseUI should update its dependency. In my current project updating support library results in "Unable to merge dex". Please upgrade and release a new version as soon as possible.
|
Thanks for your pull request. t looks like this may be your first contribution to a Google open source project (if not, look below for help). Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please visit https://cla.developers.google.com/ to sign. Once you've signed (or fixed any issues), please reply here (e.g. What to do if you already signed the CLAIndividual signers
Corporate signers
|
|
I signed it! |
|
CLAs look good, thanks! |
|
@majid-vaghari I will add this to the If you're having |
|
Thank you @samtstern. I changed the version of support library back to 27.0.2 in my own project. The problem seems to be originating from the fact that dependencies {
implementation 'com.android.support:design:27.1.0' // and some other packages from support library
implementation ('com.firebaseui:firebase-ui-auth:3.2.2') {
exclude group: 'com.android.support'
}
}But it didn't seem to work. Inevitably I downgraded the support library version back to 27.0.2 and the build process completed successfully. If there is another workaround which you may know of, I would be glad to hear it from you. |
|
@majid-vaghari here's the general workaround: So you'd want to add: implementation "com.android.support:design:27.1.0"
implementation "com.android.support:customtabs:27.1.0"
implementation "com.android.support:cardview-v7:27.1.0"By explicitly adding those to your own |
Support Library is updated to version 27.1.0 on February 2018 and I think FirebaseUI should update its dependency. In my current project updating support library results in "Unable to merge dex". Please upgrade and release a new version as soon as possible.
Hey there! So you want to contribute to FirebaseUI? Before you file this pull request, follow these steps:
./gradlew checkto ensure the Travis build passes.