Since downloading the latest SDK and installing Android Studio, my project fails to build. I get the following message:
Manifest merger failed with
"tools:replace="android:appComponentFactory" <- this line you're saying to Manifest merger that you're going to provide new value for android:appComponentFactory attribute but you're not doing so. So as I see it you have two options:
Remove tools:replace="android:appComponentFactory"
Provide new value for android:appComponentFactory" attribute
Hope it helps.