AndroidManifest merge error :
/Users/***/Documents/Gitlab/GSOnline/app/src/main/AndroidManifest.xml:41:9-47 Error:
Attribute application@label value=(@string/ground_station) from AndroidManifest.xml:41:9-47
is also present at [com.eav.lib:route:2.1.58_r6_v1.4] AndroidManifest.xml:13:9-41 value=(@string/app_name).
Suggestion: add 'tools:replace="android:label"' to <application> element at AndroidManifest.xml:37:5-88:19 to override.
See http://g.co/androidstudio/manifest-merger for more information about the manifest merger.
Execution failed for task ':app:processComDebugMainManifest'.
> Manifest merger failed with multiple errors, see logs
从抛出的异常可以了解到application@label和第三方库的label冲突了,建议在标签中加入'tools:replace="android:label"'来覆盖第三方库的android:label属性。
添加后问题解决。