Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. ubprojects {
  2. project.configurations.all {
  3. resolutionStrategy.eachDependency { details ->
  4. if (details.requested.group == 'com.android.support'
  5. && !details.requested.name.contains('multidex') ) {
  6. details.useVersion "27.1.1"
  7. }
  8.  
  9. if (details.requested.group == 'androidx.core'
  10. && !details.requested.name.contains('androidx') ) {
  11. details.useVersion "1.0.1"
  12. }
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement