2023-11-29 04:49:37 +01:00
|
|
|
const pkg = require('./package.json')
|
|
|
|
|
2024-01-08 23:55:47 +01:00
|
|
|
const SPLASH_CONFIG = {
|
|
|
|
backgroundColor: '#ffffff',
|
|
|
|
image: './assets/splash.png',
|
|
|
|
resizeMode: 'cover',
|
|
|
|
}
|
|
|
|
const DARK_SPLASH_CONFIG = {
|
|
|
|
backgroundColor: '#001429',
|
|
|
|
image: './assets/splash-dark.png',
|
|
|
|
resizeMode: 'cover',
|
|
|
|
}
|
|
|
|
|
2024-03-06 06:28:27 +01:00
|
|
|
const SPLASH_CONFIG_ANDROID = {
|
|
|
|
backgroundColor: '#0c7cff',
|
|
|
|
image: './assets/splash.png',
|
|
|
|
resizeMode: 'cover',
|
|
|
|
}
|
|
|
|
const DARK_SPLASH_CONFIG_ANDROID = {
|
|
|
|
backgroundColor: '#0f141b',
|
|
|
|
image: './assets/splash-dark.png',
|
|
|
|
resizeMode: 'cover',
|
|
|
|
}
|
|
|
|
|
2024-02-21 22:54:31 +01:00
|
|
|
module.exports = function (config) {
|
2023-11-29 04:49:37 +01:00
|
|
|
/**
|
|
|
|
* App version number. Should be incremented as part of a release cycle.
|
|
|
|
*/
|
|
|
|
const VERSION = pkg.version
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Uses built-in Expo env vars
|
|
|
|
*
|
|
|
|
* @see https://docs.expo.dev/build-reference/variables/#built-in-environment-variables
|
|
|
|
*/
|
|
|
|
const PLATFORM = process.env.EAS_BUILD_PLATFORM
|
|
|
|
|
|
|
|
const DIST_BUILD_NUMBER =
|
2024-02-21 22:54:31 +01:00
|
|
|
PLATFORM === 'android'
|
|
|
|
? process.env.BSKY_ANDROID_VERSION_CODE
|
|
|
|
: process.env.BSKY_IOS_BUILD_NUMBER
|
2023-11-29 04:49:37 +01:00
|
|
|
|
2023-09-08 17:47:01 +02:00
|
|
|
return {
|
|
|
|
expo: {
|
2023-11-29 04:49:37 +01:00
|
|
|
version: VERSION,
|
2023-09-08 17:47:01 +02:00
|
|
|
name: 'Bluesky',
|
|
|
|
slug: 'bluesky',
|
|
|
|
scheme: 'bluesky',
|
|
|
|
owner: 'blueskysocial',
|
|
|
|
runtimeVersion: {
|
|
|
|
policy: 'appVersion',
|
|
|
|
},
|
|
|
|
orientation: 'portrait',
|
|
|
|
icon: './assets/icon.png',
|
|
|
|
userInterfaceStyle: 'automatic',
|
2024-01-08 23:55:47 +01:00
|
|
|
splash: SPLASH_CONFIG,
|
2023-09-08 17:47:01 +02:00
|
|
|
ios: {
|
|
|
|
supportsTablet: false,
|
|
|
|
bundleIdentifier: 'xyz.blueskyweb.app',
|
|
|
|
config: {
|
|
|
|
usesNonExemptEncryption: false,
|
|
|
|
},
|
|
|
|
infoPlist: {
|
|
|
|
UIBackgroundModes: ['remote-notification'],
|
|
|
|
NSCameraUsageDescription:
|
|
|
|
'Used for profile pictures, posts, and other kinds of content.',
|
|
|
|
NSMicrophoneUsageDescription:
|
|
|
|
'Used for posts and other kinds of content.',
|
|
|
|
NSPhotoLibraryAddUsageDescription:
|
|
|
|
'Used to save images to your library.',
|
|
|
|
NSPhotoLibraryUsageDescription:
|
|
|
|
'Used for profile pictures, posts, and other kinds of content',
|
|
|
|
},
|
|
|
|
associatedDomains: ['applinks:bsky.app', 'applinks:staging.bsky.app'],
|
2024-01-08 22:47:25 +01:00
|
|
|
splash: {
|
2024-01-08 23:55:47 +01:00
|
|
|
...SPLASH_CONFIG,
|
|
|
|
dark: DARK_SPLASH_CONFIG,
|
2024-01-08 22:47:25 +01:00
|
|
|
},
|
2024-02-28 06:09:59 +01:00
|
|
|
entitlements: {
|
|
|
|
'com.apple.security.application-groups': 'group.app.bsky',
|
|
|
|
},
|
2023-09-08 17:47:01 +02:00
|
|
|
},
|
|
|
|
androidStatusBar: {
|
2024-03-06 06:28:27 +01:00
|
|
|
barStyle: 'light-content',
|
|
|
|
backgroundColor: '#00000000',
|
2023-09-08 17:47:01 +02:00
|
|
|
},
|
|
|
|
android: {
|
2023-12-14 21:48:40 +01:00
|
|
|
icon: './assets/icon.png',
|
2023-09-08 17:47:01 +02:00
|
|
|
adaptiveIcon: {
|
2023-12-14 21:48:40 +01:00
|
|
|
foregroundImage: './assets/icon-android-foreground.png',
|
|
|
|
monochromeImage: './assets/icon-android-foreground.png',
|
|
|
|
backgroundImage: './assets/icon-android-background.png',
|
|
|
|
backgroundColor: '#1185FE',
|
2023-09-08 17:47:01 +02:00
|
|
|
},
|
|
|
|
googleServicesFile: './google-services.json',
|
|
|
|
package: 'xyz.blueskyweb.app',
|
|
|
|
intentFilters: [
|
|
|
|
{
|
|
|
|
action: 'VIEW',
|
|
|
|
autoVerify: true,
|
|
|
|
data: [
|
|
|
|
{
|
|
|
|
scheme: 'https',
|
|
|
|
host: 'bsky.app',
|
|
|
|
},
|
2024-02-27 19:35:38 +01:00
|
|
|
{
|
|
|
|
scheme: 'http',
|
|
|
|
host: 'localhost:19006',
|
|
|
|
},
|
2023-09-08 17:47:01 +02:00
|
|
|
],
|
|
|
|
category: ['BROWSABLE', 'DEFAULT'],
|
|
|
|
},
|
|
|
|
],
|
2024-01-08 22:47:25 +01:00
|
|
|
splash: {
|
2024-03-06 06:28:27 +01:00
|
|
|
...SPLASH_CONFIG_ANDROID,
|
|
|
|
dark: DARK_SPLASH_CONFIG_ANDROID,
|
2024-01-08 22:47:25 +01:00
|
|
|
},
|
2023-09-08 17:47:01 +02:00
|
|
|
},
|
|
|
|
web: {
|
|
|
|
favicon: './assets/favicon.png',
|
|
|
|
},
|
|
|
|
updates: {
|
|
|
|
enabled: true,
|
|
|
|
fallbackToCacheTimeout: 1000,
|
|
|
|
url: 'https://u.expo.dev/55bd077a-d905-4184-9c7f-94789ba0f302',
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
'expo-localization',
|
2023-11-29 04:49:37 +01:00
|
|
|
Boolean(process.env.SENTRY_AUTH_TOKEN) && 'sentry-expo',
|
2023-09-08 17:47:01 +02:00
|
|
|
[
|
|
|
|
'expo-build-properties',
|
|
|
|
{
|
2023-12-24 00:44:38 +01:00
|
|
|
ios: {
|
|
|
|
deploymentTarget: '13.4',
|
2024-03-06 03:55:23 +01:00
|
|
|
newArchEnabled: false,
|
2023-12-24 00:44:38 +01:00
|
|
|
},
|
2023-09-08 17:47:01 +02:00
|
|
|
android: {
|
|
|
|
compileSdkVersion: 34,
|
|
|
|
targetSdkVersion: 34,
|
|
|
|
buildToolsVersion: '34.0.0',
|
|
|
|
kotlinVersion: '1.8.0',
|
2024-03-06 03:55:23 +01:00
|
|
|
newArchEnabled: false,
|
2023-09-08 17:47:01 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'expo-updates',
|
|
|
|
{
|
|
|
|
username: 'blueskysocial',
|
|
|
|
},
|
|
|
|
],
|
2024-02-06 00:22:17 +01:00
|
|
|
[
|
|
|
|
'expo-notifications',
|
|
|
|
{
|
|
|
|
icon: './assets/icon-android-notification.png',
|
|
|
|
color: '#ffffff',
|
|
|
|
},
|
|
|
|
],
|
2023-12-12 22:40:24 +01:00
|
|
|
'./plugins/withAndroidManifestPlugin.js',
|
2024-03-06 06:28:27 +01:00
|
|
|
'./plugins/withAndroidStylesWindowBackgroundPlugin.js',
|
2024-02-28 00:22:03 +01:00
|
|
|
'./plugins/shareExtension/withShareExtensions.js',
|
2023-09-08 17:47:01 +02:00
|
|
|
].filter(Boolean),
|
|
|
|
extra: {
|
|
|
|
eas: {
|
2024-02-28 05:54:12 +01:00
|
|
|
build: {
|
|
|
|
experimental: {
|
|
|
|
ios: {
|
|
|
|
appExtensions: [
|
|
|
|
{
|
|
|
|
targetName: 'Share-with-Bluesky',
|
|
|
|
bundleIdentifier: 'xyz.blueskyweb.app.Share-with-Bluesky',
|
2024-02-28 06:09:59 +01:00
|
|
|
entitlements: {
|
2024-02-28 06:11:48 +01:00
|
|
|
'com.apple.security.application-groups': [
|
|
|
|
'group.app.bsky',
|
|
|
|
],
|
2024-02-28 06:09:59 +01:00
|
|
|
},
|
2024-02-28 05:54:12 +01:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2023-09-08 17:47:01 +02:00
|
|
|
projectId: '55bd077a-d905-4184-9c7f-94789ba0f302',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
hooks: {
|
|
|
|
postPublish: [
|
2023-11-29 04:49:37 +01:00
|
|
|
/*
|
|
|
|
* @see https://docs.expo.dev/guides/using-sentry/#app-configuration
|
|
|
|
*/
|
2023-09-08 17:47:01 +02:00
|
|
|
{
|
|
|
|
file: 'sentry-expo/upload-sourcemaps',
|
|
|
|
config: {
|
|
|
|
organization: 'blueskyweb',
|
|
|
|
project: 'react-native',
|
2023-11-29 04:49:37 +01:00
|
|
|
release: VERSION,
|
|
|
|
dist: `${PLATFORM}.${VERSION}.${DIST_BUILD_NUMBER}`,
|
2023-09-08 17:47:01 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|