We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I think you used compile 'com.android.support:appcompat-v7:25.1.0'
please come back to compile 'com.android.support:appcompat-v7:25.0.1'
becz, in appcompat : 25.1.0 fragment getSupportFragmentManager().popBackStack(); have a bug and it's not working perfectly...
The text was updated successfully, but these errors were encountered:
Can't you just use a different version in your code? I don't think the version is enforced by a library (or is it?). You can always exclude it if that helps https://discuss.gradle.org/t/excluding-dependencies-from-dependent-projects/4506.
Sorry, something went wrong.
Had similar problem, conflict with the support lib, fixed with:
compile ('com.futuremind.recyclerfastscroll:fastscroll:0.2.5') { exclude module: 'appcompat-v7' exclude group: 'com.android.support' }
Hope it helps, cheers
No branches or pull requests
I think you used compile 'com.android.support:appcompat-v7:25.1.0'
please come back to compile 'com.android.support:appcompat-v7:25.0.1'
becz, in appcompat : 25.1.0 fragment getSupportFragmentManager().popBackStack(); have a bug and it's not working perfectly...
The text was updated successfully, but these errors were encountered: