Advertisement
Guest User

Untitled

a guest
Sep 25th, 2016
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.15 KB | None | 0 0
  1. Executing tasks: [:app:generateDebugSources, :app:generateDebugAndroidTestSources, :app:mockableAndroidJar, :app:prepareDebugUnitTestDependencies]
  2.  
  3. Parallel execution with configuration on demand is an incubating feature.
  4. :app:preBuild UP-TO-DATE
  5. :app:preDebugBuild UP-TO-DATE
  6. :app:checkDebugManifest
  7. :app:preReleaseBuild UP-TO-DATE
  8. :app:prepareComAndroidSupportAnimatedVectorDrawable2421Library UP-TO-DATE
  9. :app:prepareComAndroidSupportAppcompatV72421Library UP-TO-DATE
  10. :app:prepareComAndroidSupportSupportCompat2421Library UP-TO-DATE
  11. :app:prepareComAndroidSupportSupportCoreUi2421Library UP-TO-DATE
  12. :app:prepareComAndroidSupportSupportCoreUtils2421Library UP-TO-DATE
  13. :app:prepareComAndroidSupportSupportFragment2421Library UP-TO-DATE
  14. :app:prepareComAndroidSupportSupportMediaCompat2421Library UP-TO-DATE
  15. :app:prepareComAndroidSupportSupportV42421Library UP-TO-DATE
  16. :app:prepareComAndroidSupportSupportVectorDrawable2421Library UP-TO-DATE
  17. :app:prepareComGetkeepsafeRelinkerRelinker121Library UP-TO-DATE
  18. :app:prepareComJakewhartonButterknife840Library UP-TO-DATE
  19. :app:prepareIoRealmRealmAndroidLibrary120Library UP-TO-DATE
  20. :app:prepareDebugDependencies
  21. :app:compileDebugAidl UP-TO-DATE
  22. :app:compileDebugRenderscript UP-TO-DATE
  23. :app:generateDebugBuildConfig UP-TO-DATE
  24. :app:generateDebugResValues UP-TO-DATE
  25. :app:generateDebugResources UP-TO-DATE
  26. :app:mergeDebugResources UP-TO-DATE
  27. :app:processDebugManifest
  28. :app:processDebugResources
  29. :app:generateDebugSources
  30. :app:preDebugAndroidTestBuild UP-TO-DATE
  31. :app:prepareDebugAndroidTestDependencies
  32. :app:compileDebugAndroidTestAidl UP-TO-DATE
  33. :app:processDebugAndroidTestManifest UP-TO-DATE
  34. :app:compileDebugAndroidTestRenderscript UP-TO-DATE
  35. :app:generateDebugAndroidTestBuildConfig UP-TO-DATE
  36. :app:generateDebugAndroidTestResValues UP-TO-DATE
  37. :app:generateDebugAndroidTestResources UP-TO-DATE
  38. :app:mergeDebugAndroidTestResources UP-TO-DATE
  39. :app:processDebugAndroidTestResources
  40. :app:generateDebugAndroidTestSources
  41. :app:mockableAndroidJar UP-TO-DATE
  42. :app:preDebugUnitTestBuild UP-TO-DATE
  43. :app:prepareDebugUnitTestDependencies
  44.  
  45. BUILD SUCCESSFUL
  46.  
  47. Total time: 2.906 secs
  48.  
  49. Error:Execution failed for task ':app:compileDebugJavaWithJavac'.
  50. > java.lang.NullPointerException
  51.  
  52. FAILURE: Build failed with an exception.
  53.  
  54. * Where:
  55. Build file '.../project-name/app/build.gradle' line: 1
  56.  
  57. * What went wrong:
  58. A problem occurred evaluating project ':app'.
  59. > Failed to apply plugin [id 'com.android.application']
  60. > Minimum supported Gradle version is 2.14.1. Current version is 2.11. If using the gradle wrapper, try editing the distributionUrl in /Users/jozan/projects/krimturstudios/adventures/gradle/wrapper/gradle-wrapper.properties to gradle-2.14.1-all.zip
  61.  
  62. distributionBase=GRADLE_USER_HOME
  63. distributionPath=wrapper/dists
  64. zipStoreBase=GRADLE_USER_HOME
  65. zipStorePath=wrapper/dists
  66. distributionUrl=https://services.gradle.org/distributions/gradle-2.14.1-all.zip
  67.  
  68. buildscript {
  69. repositories {
  70. jcenter()
  71. }
  72.  
  73. dependencies {
  74. classpath 'com.android.tools.build:gradle:2.2.0'
  75. classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
  76. classpath "io.realm:realm-gradle-plugin:1.2.0"
  77. }
  78. }
  79.  
  80. allprojects {
  81. repositories {
  82. jcenter()
  83. }
  84. }
  85.  
  86. task clean(type: Delete) {
  87. delete rootProject.buildDir
  88. }
  89.  
  90. apply plugin: "com.android.application"
  91. apply plugin: "android-apt"
  92. apply plugin: "realm-android"
  93.  
  94. android {
  95. compileSdkVersion 24
  96. buildToolsVersion "24.0.2"
  97.  
  98. defaultConfig {
  99. applicationId "..."
  100. minSdkVersion 17
  101. targetSdkVersion 24
  102. versionCode 1
  103. versionName "0.2"
  104. }
  105.  
  106. buildTypes {
  107. debug {
  108. applicationIdSuffix ".debug"
  109. }
  110. release {
  111. minifyEnabled false
  112. proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
  113. }
  114. }
  115. }
  116.  
  117. dependencies {
  118. // Local
  119. compile fileTree(include: ["*.jar"], dir: "libs")
  120.  
  121. // Testing
  122. testCompile "junit:junit:4.12"
  123.  
  124. // Android
  125. compile "com.android.support:appcompat-v7:24.2.1"
  126. compile "com.android.support:support-v4:24.2.1"
  127.  
  128. // Butterknife
  129. compile "com.jakewharton:butterknife:8.4.0"
  130. apt "com.jakewharton:butterknife-compiler:8.4.0"
  131. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement