错误:任务':app:processDebugManifest'
的执行失败。
清单合并失败:[com.android.support:design:25.3.0] AndroidManifest.xml:27:9-31中的属性meta-data#android.support.VERSION@value value =(25.3.0) 也出现在[com.android.support:support-v4:25.3.1] AndroidManifest.xml:27:9-31 value =(25.3.1)。 建议:添加'工具:replace =" android:value"'到AndroidManifest.xml:25:5-27:34的元素覆盖。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.helploger.www.swipeview">
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<application
android:fullBackupContent="false"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT"
/>
</intent-filter>
</activity>
</application>
</manifest>
答案 0 :(得分:9)
您使用的是多个版本的Android支持库:
将所有支持库移动到一个版本25.3.1或25.3.0 将所有支持库移动到25.3.1后,我的错误被删除了。
答案 1 :(得分:0)
如果你们在Ionic / Ionic 3 / Cordova中遇到这个错误,请检查project.properties文件中的以下行。将加号更改为您的版本。
cordova.system.library.7=com.android.support:support-v4:+