tooot/app.config.ts

48 lines
1.2 KiB
TypeScript
Raw Normal View History

2020-11-23 00:07:32 +01:00
import { ExpoConfig } from '@expo/config'
2021-02-02 22:50:38 +01:00
import { versions } from './package.json'
2021-01-20 00:39:39 +01:00
import 'dotenv/config'
2020-11-23 00:07:32 +01:00
2021-02-02 22:50:38 +01:00
const toootVersion = `${versions.major}.${versions.minor}.${versions.patch}`
2020-11-23 00:07:32 +01:00
export default (): ExpoConfig => ({
2021-01-16 01:44:00 +01:00
name: 'tooot',
2021-01-30 01:29:15 +01:00
description: 'tooot for Mastodon',
2021-01-16 01:44:00 +01:00
slug: 'tooot',
scheme: 'tooot',
2021-02-02 22:50:38 +01:00
version: toootVersion,
2020-11-23 00:07:32 +01:00
privacy: 'hidden',
2020-12-29 01:09:22 +01:00
assetBundlePatterns: ['assets/*'],
2020-12-29 16:19:04 +01:00
hooks: {
postPublish: [
{
2021-01-20 00:39:39 +01:00
file: 'sentry-expo/upload-sourcemaps',
config: {
organization: process.env.SENTRY_ORGANIZATION,
project: process.env.SENTRY_PROJECT,
authToken: process.env.SENTRY_AUTH_TOKEN,
setCommits: process.env.GITHUB_SHA || undefined,
2021-03-14 21:48:28 +01:00
deployEnv: process.env.ENVIRONMENT
2021-01-20 00:39:39 +01:00
}
2020-12-29 16:19:04 +01:00
}
]
},
2021-10-24 00:43:00 +02:00
jsEngine: 'hermes',
2021-02-20 19:12:44 +01:00
ios: {
bundleIdentifier: 'com.xmflsct.app.tooot'
},
2021-01-22 01:34:20 +01:00
android: {
package: 'com.xmflsct.app.tooot',
googleServicesFile: './configs/google-services.json',
2022-05-08 23:40:42 +02:00
permissions: ['CAMERA', 'VIBRATE'],
blockedPermissions: ['USE_BIOMETRIC', 'USE_FINGERPRINT']
2022-06-07 21:39:41 +02:00
},
plugins: [
[
'expo-notifications',
{
sounds: ['./assets/sounds/boop.mp3']
}
]
]
2020-11-23 00:07:32 +01:00
})