Guest User

Untitled

a guest
Jul 15th, 2018
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. org.gradle.initialization.ReportedException: org.gradle.internal.exceptions.LocationAwareException: Execution failed for task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug'.
  2. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  3. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  4. at java.lang.Thread.run(Thread.java:745)
  5.  
  6. apply plugin: 'com.android.application'
  7.  
  8. android {
  9. compileSdkVersion 28
  10. defaultConfig {
  11. applicationId "com.example.abisu.lector_qr"
  12. minSdkVersion 15
  13. targetSdkVersion 28
  14. versionCode 1
  15. versionName "1.0"
  16. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  17. }
  18. buildTypes {
  19. release {
  20. minifyEnabled false
  21. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  22. }
  23. }
  24. }
  25.  
  26. dependencies {
  27. implementation fileTree(dir: 'libs', include: ['*.jar'])
  28. //noinspection GradleCompatible
  29. implementation 'com.android.support:appcompat-v7:28.0.0-alpha1'
  30. implementation 'com.android.support.constraint:constraint-layout:1.1.2'
  31. testImplementation 'junit:junit:4.12'
  32. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  33. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  34. implementation 'me.dm7.barcodescanner:zxing:1.8.4'
  35. }
  36.  
  37. # Project-wide Gradle settings.
  38. # IDE (e.g. Android Studio) users:
  39. # Gradle settings configured through the IDE *will override*
  40. # any settings specified in this file.
  41. # For more details on how to configure your build environment visit
  42. # http://www.gradle.org/docs/current/userguide/build_environment.html
  43. # Specifies the JVM arguments used for the daemon process.
  44. # The setting is particularly useful for tweaking memory settings.
  45. org.gradle.jvmargs=-Xmx1536m
  46. # When configured, Gradle will run in incubating parallel mode.
  47. # This option should only be used with decoupled projects. More details, visit
  48. # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
  49. # org.gradle.parallel=true
  50. android.enableR8 = false
Add Comment
Please, Sign In to add comment