Error when running cordova build –release android

后端 未结 8 1336
野趣味
野趣味 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:32

    One can be more specific by just adding

    lintOptions {
        disable MissingTranslation
    }
    
    0 讨论(0)
  • 2020-12-25 11:38

    No need to use a cordova plugin, use an after_platform_add hook as described here, then put the following in a build-extras.gradle file:

    android {
        lintOptions {
            disable 'MissingTranslation'
            disable 'ExtraTranslation'
        }
    }
    
    0 讨论(0)
提交回复
热议问题