Cordova 6.4.0 Android error when building release apk

前端 未结 3 1352
隐瞒了意图╮
隐瞒了意图╮ 2021-01-12 17:46

I had a project working well on cordova 6.3.1 .

Then I updated cordova and my project to 6.4.0 . After this, first time I built, gradle got automatically updated to

3条回答
  •  难免孤独
    2021-01-12 18:24

    Can you put your password into your build.json and see if works.

    {
       "android": {
         "release": {
             "keystore": "path\\to\\keystore.keystore",
             "storePassword": "password",
             "alias": "alias",
             "password" : "password",
             "keystoreType": ""
         }
       }
    }
    

    I am on the same version as yourself, and this is my build.json.

    I then just change to release and build solution to get release.apk

    I know cmd4life, apologies if offended!

提交回复
热议问题