Skip to content

Commit

Permalink
adjust app.config.js to prevent development manifest error (#3413)
Browse files Browse the repository at this point in the history
  • Loading branch information
haileyok authored Apr 5, 2024
1 parent cd29dba commit a6babac
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions app.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,15 @@ module.exports = function (config) {
// TestFlight builds
enabled: IS_TESTFLIGHT,
fallbackToCacheTimeout: 30000,
codeSigningCertificate: './code-signing/certificate.pem',
codeSigningMetadata: {
keyid: 'main',
alg: 'rsa-v1_5-sha256',
},
codeSigningCertificate: IS_TESTFLIGHT
? './code-signing/certificate.pem'
: undefined,
codeSigningMetadata: IS_TESTFLIGHT
? {
keyid: 'main',
alg: 'rsa-v1_5-sha256',
}
: undefined,
checkAutomatically: 'NEVER',
channel: UPDATES_CHANNEL,
},
Expand Down

0 comments on commit a6babac

Please sign in to comment.