You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can manually fix this by adding, tools:node="replace" on the application node along with the xmlns:tools="http://schemas.android.com/tools" at the root of the manifest. But of course it's all blown away as soon as the manifest gets regenerated.
Error:(16, 45) Execution failed for task ':pro:processStageDebugManifest'.
> Manifest merger failed : Attribute application@icon value=(@drawable/logo) from AndroidManifest.xml:16:45
is also present at com.github.dmytrodanylyk.circular-progress-button:library:1.0.4:4:18 value=(@drawable/ic_launcher)
Suggestion: add 'tools:replace="android:icon"' to <application> element at AndroidManifest.xml:16:5 to override
The text was updated successfully, but these errors were encountered:
Right now the namespaces are hardcoded into the org.androidtransfuse.model.manifest.package-info class. I wonder if we could make this more dynamic... like it would pick up a base set and add to it any others that were already defined in the existing manifest.
I thought the manifest merging was designed to honor additional parameters that you introduce into the manifest. I'll have to dig into this to figure out why this parameter is not preserved.
As we discussed, for the time being, you can turn off manifest overwriting by the following gradle configuration:
I can manually fix this by adding,
tools:node="replace"
on the application node along with thexmlns:tools="http://schemas.android.com/tools"
at the root of the manifest. But of course it's all blown away as soon as the manifest gets regenerated.The text was updated successfully, but these errors were encountered: