I added firebase crashlytics in Gradle. But in my project, multiple third-party libraries were included. So multiple AndroidManifest and in the main manifest. I added one line tools:node="replace"
but somehow it blocks reporting crashes on firebase crashlytics. if I remove this line then merge conflicts get occurred and multiple copies of the application get created like 3 copies.
I tried to use tools:node="merge"
instead of tools:node="replace"
but the same merge manifest conflicts occurred.
Error: Attribute application@allowBackup value=(false) from AndroidManifest.xml:64:9-36 is also present at AndroidManifest.xml:17:9-35 value=(true). Suggestion: add 'tools:replace="android:allowBackup"' to element at AndroidManifest.xml:62:5-1207:19 to override. 18_Oct_Android11.vodafoneEKYC main manifest (this file), line 63
Can you help me out?