Я пытаюсь добавить firebase-auth:15.0.0
зависимость к моему проекту с appcompat-v7:27.0.0
, но это вызывает предупреждение, что "смешивание версий может привести к сбоям во время выполнения".
Я также попытался добавить новую обновленную зависимость firebase-auth:15.1.0
, но это вызывает ту же проблему.
Вот мой блок зависимостей
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:27.1.0'
implementation 'com.google.firebase:firebase-auth:15.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}