134 lines
4.6 KiB
Diff
134 lines
4.6 KiB
Diff
--- a/app.config.js
|
|
+++ b/app.config.js
|
|
@@ -23,10 +23,7 @@
|
|
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 ? [] : []),
|
|
]
|
|
@@ -38,27 +35,25 @@
|
|
return {
|
|
expo: {
|
|
version: VERSION,
|
|
- name: 'Bluesky',
|
|
- slug: 'bluesky',
|
|
- scheme: 'bluesky',
|
|
+ name: 'Aiat',
|
|
+ slug: 'aiat',
|
|
+ scheme: 'syui',
|
|
owner: 'blueskysocial',
|
|
runtimeVersion: {
|
|
policy: 'appVersion',
|
|
},
|
|
- icon: './assets/app-icons/ios_icon_default_next.png',
|
|
+ icon: './assets/logo.png',
|
|
userInterfaceStyle: 'automatic',
|
|
primaryColor: '#1083fe',
|
|
newArchEnabled: false,
|
|
ios: {
|
|
supportsTablet: false,
|
|
- bundleIdentifier: 'xyz.blueskyweb.app',
|
|
+ bundleIdentifier: 'ai.syui.at',
|
|
+ buildNumber: '__BUILD_NUMBER__',
|
|
config: {
|
|
usesNonExemptEncryption: false,
|
|
},
|
|
- icon:
|
|
- PLATFORM === 'web' // web build doesn't like .icon files
|
|
- ? './assets/app-icons/ios_icon_default_next.png'
|
|
- : './assets/app-icons/ios_icon_default.icon',
|
|
+ icon: './assets/logo.png',
|
|
infoPlist: {
|
|
UIBackgroundModes: ['remote-notification'],
|
|
NSCameraUsageDescription:
|
|
@@ -118,7 +113,7 @@
|
|
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',
|
|
// 'com.apple.developer.device-information.user-assigned-device-name': true,
|
|
},
|
|
privacyManifests: {
|
|
@@ -181,14 +176,14 @@
|
|
barStyle: 'light-content',
|
|
},
|
|
android: {
|
|
- icon: './assets/app-icons/android_icon_default_next.png',
|
|
+ icon: './assets/logo.png',
|
|
adaptiveIcon: {
|
|
foregroundImage: './assets/icon-android-foreground.png',
|
|
monochromeImage: './assets/icon-android-monochrome.png',
|
|
backgroundColor: '#006AFF',
|
|
},
|
|
googleServicesFile: './google-services.json',
|
|
- package: 'xyz.blueskyweb.app',
|
|
+ package: 'ai.syui.at',
|
|
intentFilters: [
|
|
{
|
|
action: 'VIEW',
|
|
@@ -196,7 +191,7 @@
|
|
data: [
|
|
{
|
|
scheme: 'https',
|
|
- host: 'bsky.app',
|
|
+ host: 'syu.is',
|
|
},
|
|
...(IS_DEV
|
|
? [
|
|
@@ -280,7 +275,6 @@
|
|
networkInstrumentation: true,
|
|
},
|
|
],
|
|
- './plugins/starterPackAppClipExtension/withStarterPackAppClip.js',
|
|
'./plugins/withGradleJVMHeapSizeIncrease.js',
|
|
'./plugins/withAndroidManifestLargeHeapPlugin.js',
|
|
'./plugins/withAndroidManifestFCMIconPlugin.js',
|
|
@@ -288,8 +282,6 @@
|
|
'./plugins/withAndroidStylesAccentColorPlugin.js',
|
|
'./plugins/withAndroidDayNightThemePlugin.js',
|
|
'./plugins/withAndroidNoJitpackPlugin.js',
|
|
- './plugins/shareExtension/withShareExtensions.js',
|
|
- './plugins/notificationsExtension/withNotificationsExtension.js',
|
|
[
|
|
'expo-font',
|
|
{
|
|
@@ -417,30 +409,7 @@
|
|
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: [],
|
|
},
|
|
},
|
|
},
|