Android ошибка: Manifest merger failed
Как исправить ошибку?
Manifest merger failed : Attribute meta-data#android.support.VERSION@value value=(26.1.0) from AndroidManifest.xml:28:21-43 is also present at [com.android.support:recyclerview-v7:26.0.0] AndroidManifest.xml:25:13-35 value=(26.0.0). Suggestion: add 'tools:replace="android:value"' to element at AndroidManifest.xml:26:9-28:38 to override.
AndroidManifest.xml
<?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="info.androidhive.bottomnavigation"
android:versionCode="3"
android:versionName="1.2"
tools:ignore="GradleOverrides">
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="29" />
<application
android:name=".app.MyApplication"
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">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<meta-data
tools:replace="android:value"
android:name="android.support.VERSION"
android:value="26.0.0" />
</intent-filter>
</activity>
</application>
</manifest>