Error: could not find the android application module. only android application modules can be connected to firebase online projects. create a new android application module or create/import a different android studio project.
Solution:
Make sure that your app/build.gradle
file doesn't have obsolete dependencies and declarations. In my case, the problem was caused by using:
dataBinding {
enabled = true
}
Instead of:
buildFeatures{
dataBinding = true
}