android getting Manifest merger failed error in nativescript -


failure: build failed exception.

  • what went wrong: execution failed task ':processf0f1debugmanifest'.

    manifest merger failed : attribute meta-data#android.support.version@value value=(25.3.1) [com.android.support:cardview-v7:25.3.1] androidmanifest.xml:24:9-31 present @ [com.android.support:design:26.0.0-alpha1] androidmanifest.xml:27:9-38 value=(26.0.0-alpha1). suggestion: add 'tools:replace="android:value"' element @ androidmanifest.xml:22:5-24:34 override.

  • try: run --stacktrace option stack trace. run --info or --debug option more log output.

build failed

after adding code in app.gradle file issue resolved..

configurations.all {     resolutionstrategy.eachdependency { dependencyresolvedetails details ->         def requested = details.requested         if (requested.group == 'com.android.support') {             if (!requested.name.startswith("multidex")) {                 details.useversion '25.3.1'             }         }     } } 

Comments

Popular posts from this blog

python Tkinter Capturing keyboard events save as one single string -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

javascript - Z-index in d3.js -