adjust `app.config.js` to prevent development manifest error (#3413)
parent
cd29dba761
commit
a6babaceaf
|
@ -130,11 +130,15 @@ module.exports = function (config) {
|
||||||
// TestFlight builds
|
// TestFlight builds
|
||||||
enabled: IS_TESTFLIGHT,
|
enabled: IS_TESTFLIGHT,
|
||||||
fallbackToCacheTimeout: 30000,
|
fallbackToCacheTimeout: 30000,
|
||||||
codeSigningCertificate: './code-signing/certificate.pem',
|
codeSigningCertificate: IS_TESTFLIGHT
|
||||||
codeSigningMetadata: {
|
? './code-signing/certificate.pem'
|
||||||
|
: undefined,
|
||||||
|
codeSigningMetadata: IS_TESTFLIGHT
|
||||||
|
? {
|
||||||
keyid: 'main',
|
keyid: 'main',
|
||||||
alg: 'rsa-v1_5-sha256',
|
alg: 'rsa-v1_5-sha256',
|
||||||
},
|
}
|
||||||
|
: undefined,
|
||||||
checkAutomatically: 'NEVER',
|
checkAutomatically: 'NEVER',
|
||||||
channel: UPDATES_CHANNEL,
|
channel: UPDATES_CHANNEL,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue