We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To use firebase androidx dependencies are needed. Here are some helpful links that I used: https://medium.com/androiddevelopers/migrating-to-androidx-tip-tricks-and-guidance-88d5de238876 https://medium.com/@begalesagar/migrate-an-existing-project-to-androidx-from-support-libraries-adbac897089b https://developer.android.com/jetpack/androidx/migrate
Stuff that I did:
android.useAndroidX=true android.enableJetifier=true
to gradle.properties
implementation 'com.github.bumptech.glide:glide:4.8.0' implementation 'com.google.firebase:firebase-database:19.6.0'
in build.gradle(app)
com.google.gms:google-services
compileSdkVersion 28
import android.support.v7.app.AppCompatActivity;
import androidx.appcompat.app.AppCompatActivity;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To use firebase androidx dependencies are needed.
Here are some helpful links that I used:
https://medium.com/androiddevelopers/migrating-to-androidx-tip-tricks-and-guidance-88d5de238876
https://medium.com/@begalesagar/migrate-an-existing-project-to-androidx-from-support-libraries-adbac897089b
https://developer.android.com/jetpack/androidx/migrate
Stuff that I did:
to gradle.properties
in build.gradle(app)
com.google.gms:google-services
compileSdkVersion 28
import android.support.v7.app.AppCompatActivity;
withimport androidx.appcompat.app.AppCompatActivity;
The text was updated successfully, but these errors were encountered: