Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
899
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.45 KB | None | 0 0
  1. ERROR: In project 'app' a resolved Google Play services library dependency depends on another at an exact version (e.g. "[17.0.
  2. 4]", but isn't being resolved to that version. Behavior exhibited by the library will be unknown.
  3.  
  4. Dependency failing: com.google.firebase:firebase-messaging:17.3.4 -> com.google.firebase:firebase-iid@[17.0.4], but fire
  5. base-iid version was 17.1.2.
  6.  
  7. The following dependencies are project dependencies that are direct or have transitive dependencies that lead to the art
  8. ifact with the issue.
  9. -- Project 'app' depends onto com.google.firebase:firebase-analytics@{strictly 16.5.0}
  10. -- Project 'app' depends onto com.google.firebase:firebase-messaging@17.3.4
  11. -- Project 'app' depends onto com.google.firebase:firebase-messaging@{strictly 17.3.4}
  12. -- Project 'app' depends onto com.google.firebase:firebase-iid@{strictly 17.1.2}
  13. -- Project 'app' depends onto com.google.android.gms:play-services-measurement-api@{strictly 16.5.0}
  14. -- Project 'app' depends onto com.google.firebase:firebase-core@16.0.9
  15. -- Project 'app' depends onto com.google.firebase:firebase-core@{strictly 16.0.9}
  16.  
  17. For extended debugging info execute Gradle from the command line with ./gradlew --info :app:assembleDebug to see the dep
  18. endency paths to the artifact. This error message came from the google-services Gradle plugin, report issues at https://
  19. github.com/google/play-services-plugins and disable by adding "googleServices { disableVersionCheck = false }" to your b
  20. uild.gradle file.
  21.  
  22.  
  23. --------------------------------------------------------------------------------------------
  24.  
  25. buildscript {
  26. repositories {
  27. maven { url 'https://maven.fabric.io/public' }
  28. }
  29.  
  30. dependencies {
  31. classpath 'io.fabric.tools:gradle:1.+'
  32. }
  33. }
  34. apply plugin: 'com.android.application'
  35. apply plugin: 'io.fabric'
  36. apply plugin: 'com.google.gms.google-services'
  37.  
  38. repositories {
  39. maven { url 'https://maven.fabric.io/public' }
  40. }
  41.  
  42. android {
  43. compileSdkVersion 28
  44. defaultConfig {
  45. applicationId "com.hala.instgram"
  46. minSdkVersion 23
  47. targetSdkVersion 28
  48. versionCode 11
  49. versionName "1.1"
  50. multiDexEnabled true
  51. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  52. proguardFiles 'proguard-rules.pro'
  53. manifestPlaceholders = [:]
  54. signingConfig signingConfigs.debug
  55. }
  56. buildTypes {
  57. release {
  58. //debuggable true
  59. //minifyEnabled true
  60. //shrinkResources true
  61.  
  62. proguardFiles getDefaultProguardFile('proguard-android.txt'),
  63. 'proguard-rules.pro'
  64. }
  65. }
  66. }
  67.  
  68. dependencies {
  69. implementation fileTree(include: ['*.jar'], dir: 'libs')
  70. implementation 'com.android.support:multidex:1.0.3'
  71. implementation 'com.android.support:appcompat-v7:28.0.0'
  72. //implementation 'android.arch.work:work-runtime:1.0.1'
  73. implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  74. implementation 'com.google.firebase:firebase-messaging:17.3.4'
  75. testImplementation 'junit:junit:4.12'
  76. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  77. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  78. implementation 'io.reactivex.rxjava2:rxjava:2.1.9'
  79. implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
  80. implementation 'com.squareup.retrofit2:retrofit:2.1.0'
  81. implementation 'com.squareup.retrofit2:converter-gson:2.0.0'
  82. implementation 'com.jakewharton.retrofit:retrofit2-rxjava2-adapter:1.0.0'
  83. implementation 'com.squareup.okhttp3:okhttp:3.10.0'
  84. implementation 'com.squareup.okhttp3:okhttp-urlconnection:3.0.1'
  85. implementation 'com.squareup.okhttp3:logging-interceptor:3.4.1'
  86.  
  87. implementation 'com.android.support:design:28.0.0'
  88. implementation 'com.crashlytics.sdk.android:crashlytics:2.9.9'
  89. implementation 'com.firebase:firebase-jobdispatcher:0.8.6'
  90. implementation('com.kaopiz:kprogresshud:1.2.0') {
  91. exclude group: 'com.android.support'
  92. }
  93. implementation 'com.google.firebase:firebase-core:16.0.9'
  94. implementation 'com.android.volley:volley:1.1.1'
  95. implementation files('E:/android-apps/Instgram/libs/core-1.58.0.0.jar')
  96. implementation files('E:/android-apps/Instgram/libs/pg-1.58.0.0.jar')
  97. implementation files('E:/android-apps/Instgram/libs/pgplib-android-1.4.jar')
  98. implementation files('E:/android-apps/Instgram/libs/prov-1.58.0.0.jar')
  99. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement