Error when running cordova build –release android

后端 未结 8 1334
野趣味
野趣味 2020-12-25 10:35

I\'m trying to publish my Android app by following the instructions here:

http://ionicframework.com/docs/guide/publishing.html

However, when I run cordova bu

8条回答
  •  囚心锁ツ
    2020-12-25 11:29

    To fixed this error you should add

    lintOptions {
        checkReleaseBuilds false
        // Or, if you prefer, you can continue to check for errors in release builds,
        // but continue the build even when errors are found:
        abortOnError false
    }
    

    In android {} section in /platforms/android/build.gradle

提交回复
热议问题