-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
71 lines (70 loc) · 1.43 KB
/
app.config.ts
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import { ExpoConfig, ConfigContext } from 'expo/config';
const IS_DEV = process.env.APP_VARIANT === 'development';
export default ({ config }: ConfigContext): ExpoConfig => ({
name: IS_DEV ? 'Art Gimon DEV' : 'Art Gimon',
slug: 'AiGimon',
scheme: 'artgimon',
version: '1.0.0',
orientation: 'portrait',
icon: './assets/icon.png',
userInterfaceStyle: 'automatic',
// updates: {
// enabled: true,
// checkAutomatically: "ON_LOAD",
// url: "https://u.expo.dev/2042bd0d-c904-4b0b-85c3-8c6596210477"
// },
runtimeVersion: {
policy: 'appVersion',
},
splash: {
image: './assets/splash.png',
resizeMode: 'contain',
backgroundColor: '#ffffff',
},
updates: {
url: 'https://u.expo.dev/2042bd0d-c904-4b0b-85c3-8c6596210477',
},
assetBundlePatterns: ['**/*'],
ios: {
supportsTablet: true,
},
android: {
adaptiveIcon: {
foregroundImage: './assets/adaptive-icon.png',
backgroundColor: '#ffffff',
},
package: IS_DEV ? 'com.kuzulabz.ArtGimonDev' : 'com.kuzulabz.ArtGimon',
},
web: {
favicon: './assets/favicon.png',
bundler: 'metro',
},
plugins: [
'expo-router',
[
'expo-font',
{
fonts: ['./assets/fonts/LilitaOne-Regular.ttf'],
},
],
[
'expo-build-properties',
{
android: {
useLegacyPackaging: true,
},
},
],
],
extra: {
router: {
origin: false,
},
eas: {
projectId: '2042bd0d-c904-4b0b-85c3-8c6596210477',
},
},
experiments: {
typedRoutes: true,
},
});