mirror of
https://github.com/tooot-app/app
synced 2025-03-20 21:40:17 +01:00
24 lines
557 B
TypeScript
24 lines
557 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: {
|
||
|
splash: {
|
||
|
image: './assets/splash.png',
|
||
|
resizeMode: 'contain',
|
||
|
backgroundColor: '#ffffff'
|
||
|
}
|
||
|
},
|
||
|
assetBundlePatterns: ['**/*']
|
||
|
})
|