tooot/app.config.ts

36 lines
810 B
TypeScript
Raw Normal View History

2020-11-23 00:07:32 +01:00
import { ExpoConfig } from '@expo/config'
export default (): ExpoConfig => ({
name: 'mastodon-app',
description: 'This is a description',
slug: 'mastodon-app',
privacy: 'hidden',
version: '1.0.0',
platforms: ['ios'],
orientation: 'portrait',
userInterfaceStyle: 'automatic',
icon: './assets/icon.png',
developmentClient: { silentLaunch: true },
scheme: 'mastodonct',
ios: {
2020-12-13 14:04:25 +01:00
bundleIdentifier: 'com.xmflsct.mastodon-app',
infoPlist: {
CFBundleAllowMixedLocalizations: true
},
2020-11-23 00:07:32 +01:00
splash: {
image: './assets/splash.png',
resizeMode: 'contain',
backgroundColor: '#ffffff'
}
},
locales: {
zh: {
CFBundleDisplayName: '我的嘟嘟'
},
en: {
CFBundleDisplayName: 'My Toots'
}
},
assetBundlePatterns: ['assets/*']
2020-11-23 00:07:32 +01:00
})