1
0
mirror of https://github.com/tooot-app/app synced 2024-12-16 11:18:46 +01:00
tooot/app.config.ts
Zhiyuan Zheng 24d0681c9e
Change language working partially
Not all translatinos are updated
2020-11-29 13:11:23 +01:00

35 lines
760 B
TypeScript

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: {
infoPlist: {
CFBundleAllowMixedLocalizations: true
},
splash: {
image: './assets/splash.png',
resizeMode: 'contain',
backgroundColor: '#ffffff'
}
},
locales: {
zh: {
CFBundleDisplayName: '我的嘟嘟'
},
en: {
CFBundleDisplayName: 'My Toots'
}
},
assetBundlePatterns: ['assets/*']
})