anthony-skr

Aviary Gradle fixes

Dec 9th, 2014
368
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. compile('com.aviary.android.feather.sdk:aviary-sdk:3.4.3.351') {
  2. // Exclude because: Common-io DEX duplicate entries because of group name change...
  3. exclude group: 'org.apache.commons', module: 'commons-io'
  4. exclude group: 'commons-io', module: 'commons-io'
  5.  
  6. // Exclude because: last versions of common-library don't contain isIceCreamSandwich method.
  7. exclude group: 'com.aviary.android.feather.sdk', module: 'common-library'
  8. }
  9.  
  10. // manual aviary common-library import
  11. compile('com.aviary.android.feather.sdk:common-library:3.1.2') {
  12.  
  13. // Exclude because: Common-io DEX duplicate entries because of group name change...
  14. exclude group: 'org.apache.commons', module: 'commons-io'
  15. exclude group: 'commons-io', module: 'commons-io'
  16. }
  17.  
  18. // manual commons-io import
  19. compile 'commons-io:commons-io:2.4'
Advertisement
Add Comment
Please, Sign In to add comment