rev change
This commit is contained in:
+16
-14
@@ -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',
|
||||||
|
|||||||
Reference in New Issue
Block a user