I'm trying to add firebase-auth:15.0.0
dependency to my project with appcompat-v7:27.0.0
but it causes a warning that "mixing versions can lead to runtime crashes".
I also tried to add new updated dependency of firebase-auth:15.1.0
but it causes the same issue.
Here is my dependencies block
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'
}