Guest User

Untitled

a guest
Jan 22nd, 2019
573
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.20 KB | None | 0 0
  1. ERROR: Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve project :subProject:CompactCalendarView.
  2. Show Details
  3. Affected Modules: app
  4.  
  5.  
  6. ERROR: Unable to resolve dependency for ':app@debugAndroidTest/compileClasspath': Could not resolve project :subProject:CompactCalendarView.
  7. Show Details
  8. Affected Modules: app
  9.  
  10.  
  11. ERROR: Unable to resolve dependency for ':app@debugUnitTest/compileClasspath': Could not resolve project :subProject:CompactCalendarView.
  12. Show Details
  13. Affected Modules: app
  14.  
  15.  
  16. ERROR: Unable to resolve dependency for ':app@release/compileClasspath': Could not resolve project :subProject:CompactCalendarView.
  17. Show Details
  18. Affected Modules: app
  19.  
  20.  
  21. ERROR: Unable to resolve dependency for ':app@releaseUnitTest/compileClasspath': Could not resolve project :subProject:CompactCalendarView.
  22. Show Details
  23. Affected Modules: app
  24.  
  25. apply plugin: 'com.android.application'
  26.  
  27. android {
  28. splits {
  29. // Configures multiple APKs based on ABI.
  30. abi {
  31. // Enables building multiple APKs per ABI.
  32. enable true
  33.  
  34. // By default all ABIs are included, so use reset() and include to specify that we only
  35. // want APKs for x86, armeabi-v7a, and mips.
  36. reset()
  37.  
  38. // Specifies a list of ABIs that Gradle should create APKs for.
  39. include "x86", "x86_64", "armeabi-v7a", "arm64-v8a"
  40.  
  41. // Specifies that we want to also generate a universal APK that includes all ABIs.
  42. universalApk true
  43. }
  44. }
  45. compileOptions {
  46. sourceCompatibility JavaVersion.VERSION_1_8
  47. targetCompatibility JavaVersion.VERSION_1_8
  48. }
  49. signingConfigs {
  50. release {
  51. keyAlias 'key'
  52. keyPassword 'key'
  53. storeFile file('/home/kirsten/AndroidStudioProjects/digital.jks')
  54. storePassword 'key'
  55. }
  56. }
  57. compileSdkVersion 28
  58. defaultConfig {
  59. applicationId "calendar.admin.ru.digital"
  60. minSdkVersion 19
  61. targetSdkVersion 28
  62. versionCode 1
  63. versionName "1.0"
  64. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  65. vectorDrawables.useSupportLibrary = true
  66. }
  67. buildTypes {
  68. release {
  69. minifyEnabled false
  70. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  71. }
  72.  
  73. }
  74. dataBinding {
  75. enabled = true
  76. }
  77. sourceSets { main { assets.srcDirs = ['src/main/assets', 'src/main/assets/'] } }
  78. packagingOptions {
  79. exclude 'META-INF/proguard/androidx-annotations.pro'
  80. }
  81. }
  82. repositories {
  83. maven {
  84. url "http://maven.google.com/"
  85. }
  86. }
  87. dependencies {
  88. implementation fileTree(include: ['*.jar'], dir: 'libs')
  89. implementation 'com.android.support:appcompat-v7:28.0.0'
  90. implementation 'com.android.support:design:28.0.0'
  91. implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  92. testImplementation 'junit:junit:4.12'
  93. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  94. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  95.  
  96. implementation 'com.google.android.gms:play-services-maps:16.0.0'
  97. implementation 'com.squareup.retrofit2:retrofit:2.4.0'
  98. implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
  99. implementation 'com.squareup.okhttp3:logging-interceptor:3.9.1'
  100.  
  101. compile project(':subProject:CompactCalendarView')
  102.  
  103. //implementation 'com.haibin:calendarview:3.5.0'
  104.  
  105. //Ниже куча прочих либ
  106. implementation 'com.github.prolificinteractive:material-calendarview:1.6.0'
  107.  
  108. implementation 'android.arch.persistence.room:runtime:1.1.1'
  109. annotationProcessor "android.arch.persistence.room:compiler:1.1.1"
  110.  
  111. implementation 'com.yandex.android:mapkit:3.2.0'
  112. implementation 'com.yandex.android:search:3.2.0'
  113.  
  114. implementation 'com.github.GrenderG:Toasty:1.3.1'
  115.  
  116. implementation 'com.wang.avi:library:2.1.3'
  117.  
  118. implementation 'com.anthonycr.progress:animated-progress:1.0'
  119.  
  120. implementation 'net.cachapa.expandablelayout:expandablelayout:2.9.2'
  121.  
  122. implementation 'com.orhanobut:dialogplus:1.11@aar'
  123.  
  124. implementation 'com.chootdev:csnackbar:1.4.2'
  125.  
  126. implementation 'io.github.tonnyl:light:1.0.0'
  127.  
  128. implementation 'com.github.loregr:lgsnackbar:1.0.2'
  129.  
  130. implementation 'com.github.dmytrodanylyk.circular-progress-button:library:1.1.3'
  131.  
  132. implementation 'com.nihaskalam.android:progress-button:1.0.1'
  133.  
  134. implementation 'com.codesgood:justifiedtextview:1.1.0'
  135.  
  136. implementation 'com.jaredrummler:material-spinner:1.3.1'
  137.  
  138. implementation 'com.applandeo:material-calendar-view:1.5.1'
  139.  
  140. implementation 'com.victor:lib:1.0.4'
  141.  
  142. implementation 'com.github.npanigrahy:Custom-Calendar-View:v1.0'
  143.  
  144. implementation 'com.github.lguipeng:AnimCheckBox:1.0.1'
  145.  
  146. implementation 'com.github.angads25:toggle:1.1.0'
  147.  
  148. implementation 'com.robertlevonyan.view:MaterialChipView:1.2.5'
  149.  
  150. implementation 'ru.cleverpumpkin:crunchycalendar:1.1.0'
  151.  
  152. implementation 'com.github.sundeepk:compact-calendar-view:3.0.0'
  153.  
  154. implementation 'com.kyleduo.switchbutton:library:2.0.0'
  155.  
  156. implementation 'com.github.zcweng:switch-button:0.0.3@aar'
  157. }
  158.  
  159. include ':app', ':subProject:CompactCalendarView'
Add Comment
Please, Sign In to add comment