Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.24 KB | None | 0 0
  1. // In the library module:
  2. android {
  3. ...
  4.     flavorDimensions 'check'
  5.     productFlavors {
  6.         noBase {}
  7.         withBase {}
  8.     }
  9. ..
  10. }
  11.  
  12. // in the app module:
  13. dependencies {
  14.     implementation project(path: ':mylib', configuration: 'noBaseRelease')
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement