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
When I run ./gradlew assembleRelease on my application which includes com.bignerdranch.android:simple-item-decoration:1.0.0, I get the following error:
AndroidManifest.xml:23:9-36 Error:
Attribute application@label value=(AirportList) from AndroidManifest.xml:23:9-36
is also present at [com.bignerdranch.android:simple-item-decoration:1.0.0] AndroidManifest.xml:13:9-41 value=(@string/app_name).
Suggestion: add 'tools:replace="android:label"' to <application> element at AndroidManifest.xml:21:5-46:19 to override.
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:processReleaseManifest'.
> Manifest merger failed : Attribute application@label value=(AirportList) from AndroidManifest.xml:23:9-36
is also present at [com.bignerdranch.android:simple-item-decoration:1.0.0] AndroidManifest.xml:13:9-41 value=(@string/app_name).
Suggestion: add 'tools:replace="android:label"' to <application> element at AndroidManifest.xml:21:5-46:19 to override.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 9s
For now I didn't try the workaround because I decided to implement the feature in a way that doesn't depend on simple-item-decoration, but I thought I should report the problem here in case you want to fix it. I guess app_name just needs to be removed from the AndroidManifest.xml.
The text was updated successfully, but these errors were encountered:
When I run
./gradlew assembleRelease
on my application which includescom.bignerdranch.android:simple-item-decoration:1.0.0
, I get the following error:For now I didn't try the workaround because I decided to implement the feature in a way that doesn't depend on simple-item-decoration, but I thought I should report the problem here in case you want to fix it. I guess
app_name
just needs to be removed from the AndroidManifest.xml.The text was updated successfully, but these errors were encountered: