[Vuejs]-Command gradlew.bat failed with exit code 1 while compiling a Vue NativeScript project

0👍

Try adding multiDexEnabled true to your app.gradle file, like this:

android {  
      defaultConfig {  
            generatedDensities = []
            multiDexEnabled true
            applicationId = XXX
      }  
}

Leave a comment