Uncheck the Filter option in the logs tab. There should be an error message in the logs.
You don't need to add any Firebase related code to your project.
I unchecked "Filter" but the log streams by so fast and in such volume that I could not see any error message.
The specific Firebase block of code from the manifest that causes the crash is below:
<service
android:name="com.google.android.gms.measurement.AppMeasurementService"
android:enabled="true"
android:exported="false"/>
<provider
android:authorities="${applicationId}.firebaseinitprovider"
android:name="com.google.firebase.provider.FirebaseInitProvider"
android:exported="false"
android:initOrder="100" />
<receiver
android:name="com.google.android.gms.measurement.AppMeasurementReceiver"
android:enabled="true">
<intent-filter>
<action android:name="com.google.android.gms.measurement.UPLOAD"/>
</intent-filter>
</receiver>
If I remove the above code and leave the rest of the Firebase code in the manifest then it works fine.