Flutter application is working fine if i use only firestore. But as now i want to add Firebase Auth it is Causing problem And showing Dex error log
How can i use bo
In your app/build.gradle file inside your android folder , add this attribute multiDexEnabled.
app/build.gradle
android
multiDexEnabled
defaultConfig { ... multiDexEnabled true }
Don't forget:
flutter clean