Android Google 播放服务重复
Android Google Play Service duplicated
任何人都知道这种错误类型,
Error:Execution failed for task ':app:processDebugManifest'. Manifest
merger failed : Attribute
meta-data#com.google.android.gms.version@value
value=(@integer/google_play_services_version) from
AndroidManifest.xml:18:13-66 is also present at
[io.nlopez.smartlocation:library:3.0.11] AndroidManifest.xml:31:13-36
value=(6587000) Suggestion: add 'tools:replace="android:value"' to
element at AndroidManifest.xml:16:9-18:69 to override
在您的应用程序标签下的清单中添加工具替换标签,喜欢这个应用程序
android:icon="@drawable/icon"
android:label="@string/app_name"
tools:replace="android:value"
然后尝试编译 运行...
任何人都知道这种错误类型,
Error:Execution failed for task ':app:processDebugManifest'. Manifest merger failed : Attribute meta-data#com.google.android.gms.version@value value=(@integer/google_play_services_version) from AndroidManifest.xml:18:13-66 is also present at [io.nlopez.smartlocation:library:3.0.11] AndroidManifest.xml:31:13-36 value=(6587000) Suggestion: add 'tools:replace="android:value"' to element at AndroidManifest.xml:16:9-18:69 to override
在您的应用程序标签下的清单中添加工具替换标签,喜欢这个应用程序 android:icon="@drawable/icon" android:label="@string/app_name" tools:replace="android:value" 然后尝试编译 运行...