diff --git a/app.config.js b/app.config.js index 246d8abd3..ef9bac4b2 100644 --- a/app.config.js +++ b/app.config.js @@ -18,10 +18,7 @@ module.exports = function (_config) { const IS_DEV = !IS_TESTFLIGHT || !IS_PRODUCTION const ASSOCIATED_DOMAINS = [ - 'applinks:bsky.app', - 'applinks:staging.bsky.app', - 'appclips:bsky.app', - 'appclips:go.bsky.app', // Allows App Clip to work when scanning QR codes + 'applinks:syu.is', // When testing local services, enter an ngrok (et al) domain here. It must use a standard HTTP/HTTPS port. ...(IS_DEV || IS_TESTFLIGHT ? [] : []), ] @@ -33,9 +30,9 @@ module.exports = function (_config) { return { expo: { version: VERSION, - name: 'Bluesky', - slug: 'bluesky', - scheme: 'bluesky', + name: 'Aiat', + slug: 'aiat', + scheme: 'syui', owner: 'blueskysocial', runtimeVersion: { policy: 'appVersion', @@ -46,7 +43,7 @@ module.exports = function (_config) { newArchEnabled: false, ios: { supportsTablet: false, - bundleIdentifier: 'xyz.blueskyweb.app', + bundleIdentifier: 'ai.syui.at', config: { usesNonExemptEncryption: false, }, @@ -113,7 +110,7 @@ module.exports = function (_config) { entitlements: { 'com.apple.developer.kernel.increased-memory-limit': true, 'com.apple.developer.kernel.extended-virtual-addressing': true, - 'com.apple.security.application-groups': 'group.app.bsky', + 'com.apple.security.application-groups': 'group.ai.syui.at', }, privacyManifests: { NSPrivacyCollectedDataTypes: [ @@ -182,7 +179,7 @@ module.exports = function (_config) { backgroundColor: '#006AFF', }, googleServicesFile: './google-services.json', - package: 'xyz.blueskyweb.app', + package: 'ai.syui.at', intentFilters: [ { action: 'VIEW', @@ -190,7 +187,7 @@ module.exports = function (_config) { data: [ { scheme: 'https', - host: 'bsky.app', + host: 'syu.is', }, IS_DEV && { scheme: 'http', @@ -213,9 +210,9 @@ module.exports = function (_config) { : undefined, codeSigningMetadata: UPDATES_ENABLED ? { - keyid: 'main', - alg: 'rsa-v1_5-sha256', - } + keyid: 'main', + alg: 'rsa-v1_5-sha256', + } : undefined, checkAutomatically: 'NEVER', }, @@ -225,7 +222,7 @@ module.exports = function (_config) { 'expo-web-browser', [ 'react-native-edge-to-edge', - {android: {enforceNavigationBarContrast: false}}, + { android: { enforceNavigationBarContrast: false } }, ], USE_SENTRY && [ '@sentry/react-native/expo', @@ -264,7 +261,6 @@ module.exports = function (_config) { networkInstrumentation: true, }, ], - './plugins/starterPackAppClipExtension/withStarterPackAppClip.js', './plugins/withGradleJVMHeapSizeIncrease.js', './plugins/withAndroidManifestLargeHeapPlugin.js', './plugins/withAndroidManifestFCMIconPlugin.js', @@ -386,7 +382,7 @@ module.exports = function (_config) { }, }, ], - ['expo-screen-orientation', {initialOrientation: 'PORTRAIT_UP'}], + ['expo-screen-orientation', { initialOrientation: 'PORTRAIT_UP' }], ['expo-location'], ].filter(Boolean), extra: { @@ -394,30 +390,7 @@ module.exports = function (_config) { build: { experimental: { ios: { - appExtensions: [ - { - targetName: 'Share-with-Bluesky', - bundleIdentifier: 'xyz.blueskyweb.app.Share-with-Bluesky', - entitlements: { - 'com.apple.security.application-groups': [ - 'group.app.bsky', - ], - }, - }, - { - targetName: 'BlueskyNSE', - bundleIdentifier: 'xyz.blueskyweb.app.BlueskyNSE', - entitlements: { - 'com.apple.security.application-groups': [ - 'group.app.bsky', - ], - }, - }, - { - targetName: 'BlueskyClip', - bundleIdentifier: 'xyz.blueskyweb.app.AppClip', - }, - ], + appExtensions: [], }, }, },