adjust app.config.js to prevent development manifest error

This commit is contained in:
Hailey
2024-04-04 17:04:57 -07:00
parent 872f5c062f
commit c9c8e0065d
+16 -14
View File
@@ -124,20 +124,22 @@ module.exports = function (config) {
web: { web: {
favicon: './assets/favicon.png', favicon: './assets/favicon.png',
}, },
updates: { // TODO Eventually we want to enable this for all environments, but for now it will only be used for
url: 'https://updates.bsky.app/manifest', // TestFlight builds
// TODO Eventually we want to enable this for all environments, but for now it will only be used for updates: IS_TESTFLIGHT
// TestFlight builds ? {
enabled: IS_TESTFLIGHT, url: 'https://updates.bsky.app/manifest',
fallbackToCacheTimeout: 30000, enabled: true,
codeSigningCertificate: './code-signing/certificate.pem', fallbackToCacheTimeout: 30000,
codeSigningMetadata: { codeSigningCertificate: './code-signing/certificate.pem',
keyid: 'main', codeSigningMetadata: {
alg: 'rsa-v1_5-sha256', keyid: 'main',
}, alg: 'rsa-v1_5-sha256',
checkAutomatically: 'NEVER', },
channel: UPDATES_CHANNEL, checkAutomatically: 'NEVER',
}, channel: UPDATES_CHANNEL,
}
: undefined,
assetBundlePatterns: ['**/*'], assetBundlePatterns: ['**/*'],
plugins: [ plugins: [
'expo-localization', 'expo-localization',