rev change

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