This commit is contained in:
Hailey
2024-06-12 10:00:50 -07:00
parent fbc407dad1
commit 986dc8d30f
+5 -5
View File
@@ -22,6 +22,8 @@ const DARK_SPLASH_CONFIG_ANDROID = {
resizeMode: 'cover', resizeMode: 'cover',
} }
const ASSOCIATED_DOMAINS = ['applinks:bsky.app', 'applinks:staging.bsky.app']
module.exports = function (config) { module.exports = function (config) {
/** /**
* App version number. Should be incremented as part of a release cycle. * App version number. Should be incremented as part of a release cycle.
@@ -83,7 +85,7 @@ module.exports = function (config) {
NSPhotoLibraryUsageDescription: NSPhotoLibraryUsageDescription:
'Used for profile pictures, posts, and other kinds of content', 'Used for profile pictures, posts, and other kinds of content',
}, },
associatedDomains: ['applinks:bsky.app', 'applinks:staging.bsky.app'], associatedDomains: ASSOCIATED_DOMAINS,
splash: { splash: {
...SPLASH_CONFIG, ...SPLASH_CONFIG,
dark: DARK_SPLASH_CONFIG, dark: DARK_SPLASH_CONFIG,
@@ -250,10 +252,8 @@ module.exports = function (config) {
'com.apple.security.application-groups': [ 'com.apple.security.application-groups': [
'group.app.bsky', 'group.app.bsky',
], ],
'com.apple.developer.associated-domains': [ 'com.apple.developer.associated-domains':
'applinks:bsky.app', ASSOCIATED_DOMAINS,
'applinks:staging.bsky.app',
],
'com.apple.developer.on-demand-install-capable': true, 'com.apple.developer.on-demand-install-capable': true,
}, },
}, },