How to fix. Error:Execution failed for task ':app:processDebugManifest'. VERSION@value value=(26.1.0)
Library com.android.support:support-v13:26.0.1
has a meta tag inside its manifest
<meta-data
android:name="android.support.VERSION"
android:value="26.0.1" />
Your another library com.android.support:design:26.1.0
has this meta tag
<meta-data
android:name="android.support.VERSION"
android:value="26.1.0" />
When we build the app library manifests will merge so multiple libraries have the same meta tag with the different value. it will cause conflict.
If you want to get rid of this add this meta tag in your app manifest
<meta-data
tools:replace="android:value"
android:name="android.support.VERSION"
android:value="26.1.0" />
Just add in your dependencies
compile 'com.android.support:support-v13:26.1.0'
**
<**application
....
..... <meta-data
tools:replace="android:value"
android:name="android.support.VERSION"
android:value="26.1.0" />
</application**
** just add this to get rid of the conflict