1

Getting "libraries must be same version" error after adding firebase dependencies into build.gradle. How to resolve the issue with the conflicting versions?

enter image description here

Martin Zeitler
  • 1
  • 19
  • 155
  • 216
Maximus
  • 29
  • 2
  • 9

2 Answers2

0

What I did was to downgrade my project's target version and lowered the appcompat version. Better wait till someone knows how to fix this.

android {
    compileSdkVersion 26
    defaultConfig {
        ...
        targetSdkVersion 26
        ...
    }
    ...
}

dependencies {
    ...
    implementation 'com.android.support:appcompat-v7:26.1.0'
    ...
}
Miko Chu
  • 1,087
  • 14
  • 22
0

Add one More dependencies below error

implementation 'com.android.support:support-v4:28.0.0'
Imran Sk
  • 303
  • 5
  • 17