Advertisement
Guest User

Untitled

a guest
Aug 27th, 2014
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. FAILURE: Build failed with an exception.
  2.  
  3. * What went wrong:
  4. Execution failed for task ':app:preDexDebug'.
  5. > com.android.ide.common.internal.LoggedErrorException: Failed to run command:
  6. /Applications/Android Studio.app/sdk/build-tools/android-4.4W/dx --dex --output /Users/davidcavanagh/joshcpdandroid/app/build/intermediates/pre-dexed/debug/classes-22ecb8c50fefe43948d87c9fee8e36a6b7d1bb5a.jar /Users/davidcavanagh/joshcpdandroid/app/build/intermediates/exploded-aar/com.android.support/support-v4/20.0.0/classes.jar
  7. Error Code:
  8. 1
  9.  
  10. apply plugin: 'com.android.application'
  11.  
  12. android {
  13. compileSdkVersion 20
  14. buildToolsVersion '20.0.0'
  15.  
  16. defaultConfig {
  17. applicationId "com.joshcpd.android"
  18. minSdkVersion 15
  19. targetSdkVersion 20
  20. versionCode 1
  21. versionName "1.0"
  22. }
  23. buildTypes {
  24. release {
  25. runProguard false
  26. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  27. }
  28. }
  29. }
  30.  
  31. dependencies {
  32. compile fileTree(dir: 'libs', include: ['*.jar'])
  33. compile 'com.google.android.gms:play-services:5.2.08'
  34. compile 'com.android.support:appcompat-v7:20.0.0'
  35. compile project(':libraries:zbar')
  36. }
  37.  
  38. buildToolsVersion 'android-4.4W'
  39.  
  40. buildToolsVersion '20.0.0'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement