tooot/app.config.ts

32 lines
749 B
TypeScript
Raw Normal View History

2020-11-23 00:07:32 +01:00
import { ExpoConfig } from '@expo/config'
import { version } from './package.json'
2021-01-20 00:39:39 +01:00
import 'dotenv/config'
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',
version,
2023-02-11 22:04:32 +01:00
// @ts-ignore
extra: { environment: process.env.ENVIRONMENT },
2020-11-23 00:07:32 +01:00
privacy: 'hidden',
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',
permissions: ['NOTIFICATIONS', 'CAMERA', 'VIBRATE'],
blockedPermissions: ['USE_BIOMETRIC', 'USE_FINGERPRINT'],
googleServicesFile: './android/app/google-services.json'
2022-06-07 21:39:41 +02:00
},
plugins: [
[
'expo-notifications',
{
sounds: ['./assets/sounds/boop.mp3']
}
]
]
2020-11-23 00:07:32 +01:00
})