Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. subprojects {
  2. project.evaluationDependsOn(':app')
  3. project.configurations.all {
  4. resolutionStrategy.eachDependency { details ->
  5. if (details.requested.group == 'com.android.support'
  6. && !details.requested.name.contains('multidex') ) {
  7. details.useVersion "26.1.0"
  8. }
  9. }
  10. }
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement