mirror of
https://github.com/tooot-app/app
synced 2025-04-22 22:27:37 +02: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: ['**/*']
|
|
})
|