forked from cdek-it/react-native-ui-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.ts
More file actions
27 lines (25 loc) · 689 Bytes
/
app.config.ts
File metadata and controls
27 lines (25 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import type { ExpoConfig } from 'expo/config'
import { version } from './package.json'
export default {
expo: {
name: 'CDEK UI',
slug: 'cdek-uikit',
version,
orientation: 'portrait',
android: { package: 'ru.cdek.uikit.prime' },
ios: {
bundleIdentifier: 'ru.cdek.uikit.prime',
config: { usesNonExemptEncryption: false },
},
splash: {
image: './splash.png',
resizeMode: 'cover',
backgroundColor: '#FFFFFF',
},
icon: './icon.png',
updates: { fallbackToCacheTimeout: 0 },
plugins: ['./expo/plugins/withEnsureBundler.js'],
newArchEnabled: true,
assetBundlePatterns: ['**/*'],
} satisfies ExpoConfig,
}