Guest User

Untitled

a guest
Feb 25th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. buildTypes {
  2. release {}
  3. test {}
  4. debug {}
  5. }
  6. productFlavors {
  7. europe {}
  8. asia {}
  9. }
  10.  
  11. android.sourceSets.europe {
  12. res.srcDirs = ['flavor_resources/europe/res']
  13. }
  14.  
  15. android.sourceSets.europe.debug {
  16. res.srcDirs = ['flavor_resources/europe/debug/res']
  17. }
  18.  
  19. buildTypes {
  20. release {
  21. manifestPlaceholders = [ applicationLabel: "@string/app_name"]
  22. }
  23. debug {
  24. manifestPlaceholders = [ applicationLabel: "@string/app_name_dev" ]
  25. }
  26. }
Add Comment
Please, Sign In to add comment