Advertisement
Guest User

Untitled

a guest
Jul 18th, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.55 KB | None | 0 0
  1. Executing tasks: [clean, :app:generateDebugSources, :app:generateDebugAndroidTestSources]
  2.  
  3. Configuration on demand is an incubating feature.
  4.  
  5. FAILURE: Build failed with an exception.
  6.  
  7. * What went wrong:
  8. A problem occurred configuring project ':app'.
  9. > Could not resolve all dependencies for configuration ':app:classpath'.
  10. > Could not resolve io.fabric.tools:gradle:1.+.
  11. Required by:
  12. TestProject18July2016:app:unspecified
  13. > Could not resolve io.fabric.tools:gradle:1.+.
  14. > Failed to list versions for io.fabric.tools:gradle.
  15. > Unable to load Maven meta-data from https://maven.fabric.io/public/io/fabric/tools/gradle/maven-metadata.xml.
  16. > Could not GET 'https://maven.fabric.io/public/io/fabric/tools/gradle/maven-metadata.xml'.
  17. > peer not authenticated
  18.  
  19. * Try:
  20. Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
  21.  
  22. BUILD FAILED
  23.  
  24. Total time: 1.367 secs
  25.  
  26. ## Project-wide Gradle settings.
  27. #
  28. # For more details on how to configure your build environment visit
  29. # http://www.gradle.org/docs/current/userguide/build_environment.html
  30. #
  31. # Specifies the JVM arguments used for the daemon process.
  32. # The setting is particularly useful for tweaking memory settings.
  33. # Default value: -Xmx10248m -XX:MaxPermSize=256m
  34. # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
  35. #
  36. # When configured, Gradle will run in incubating parallel mode.
  37. # This option should only be used with decoupled projects. More details, visit
  38. # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
  39. # org.gradle.parallel=true
  40. #Mon Jul 18 11:14:57 IST 2016
  41. systemProp.http.proxyPassword=<PASSWORD>
  42. systemProp.https.proxyUser=<USERID>
  43. systemProp.https.proxyPort=<PORT>
  44. systemProp.http.proxyHost=<PROXY_SERVER_ADDRESS>
  45. systemProp.https.proxyPassword=<PASSWORD>
  46. systemProp.https.proxyHost=<PROXY_SERVER_ADDRESS>
  47. systemProp.http.proxyUser=<USERID>
  48. systemProp.http.proxyPort=<PORT>
  49.  
  50. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  51.  
  52. buildscript {
  53. repositories {
  54. jcenter()
  55. }
  56. dependencies {
  57. classpath 'com.android.tools.build:gradle:1.5.0'
  58.  
  59. // NOTE: Do not place your application dependencies here; they belong
  60. // in the individual module build.gradle files
  61. }
  62. }
  63.  
  64. allprojects {
  65. repositories {
  66. jcenter()
  67. }
  68. }
  69.  
  70. task clean(type: Delete) {
  71. delete rootProject.buildDir
  72. }
  73.  
  74. buildscript {
  75. repositories {
  76. maven { url 'https://maven.fabric.io/public' }
  77. }
  78.  
  79. dependencies {
  80. classpath 'io.fabric.tools:gradle:1.+'
  81. }
  82. }
  83. apply plugin: 'com.android.application'
  84. apply plugin: 'io.fabric'
  85.  
  86. repositories {
  87. maven { url 'https://maven.fabric.io/public' }
  88. }
  89.  
  90.  
  91. android {
  92. compileSdkVersion 23
  93. buildToolsVersion "24.0.0"
  94.  
  95. defaultConfig {
  96. applicationId "testfirebase.kishor.testproject18july2016"
  97. minSdkVersion 19
  98. targetSdkVersion 23
  99. versionCode 1
  100. versionName "1.0"
  101. }
  102. buildTypes {
  103. release {
  104. minifyEnabled false
  105. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  106. }
  107. }
  108. }
  109.  
  110. dependencies {
  111. compile fileTree(dir: 'libs', include: ['*.jar'])
  112. /* testCompile 'junit:junit:4.12'*/
  113. compile 'com.android.support:appcompat-v7:23.1.1'
  114. compile 'com.android.support:design:23.1.1'
  115. compile('com.crashlytics.sdk.android:crashlytics:2.6.0@aar') {
  116. transitive = true;
  117. }
  118. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement