Unable to merge dex Ionic 3

后端 未结 9 2123
面向向阳花
面向向阳花 2021-01-04 11:55

Last time I build successfully but after adding the number of pages I am unable to build, I did search for that error a lot but nothing works for me.For example, add

9条回答
  •  情歌与酒
    2021-01-04 12:01

    I have the same issue

    (Unable to merge dex Ionic)

    when I created the Ionic app. When I run the app the

    BUILD FAILED in 11s 37 actionable tasks: 3 executed

    error occurred. First I use the following solution but it doesn't work for me but it work for the other I guess.

    configurations.all {
        resolutionStrategy {
           force 'com.android.support:support-v4:26.1.0'
        } 
    }
    

    Finally this is what helped me to overcome the issue of failing to build the app.

    cordova clean android
    ionic cordova build android
    ionic cordova run android (To re-launch the app)
    

提交回复
热议问题