-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.config.ts
More file actions
69 lines (68 loc) · 1.47 KB
/
Copy pathapp.config.ts
File metadata and controls
69 lines (68 loc) · 1.47 KB
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
const IS_DEV = process.env.APP_VARIANT === 'dev';
export default {
name: 'TrainLCD',
slug: 'trainlcd',
version: '10.10.1',
plugins: [
'expo-image',
'expo-font',
'expo-localization',
'expo-web-browser',
'expo-sqlite',
'expo-asset',
'expo-quick-actions',
'expo-secure-store',
[
'expo-location',
{
isAndroidBackgroundLocationEnabled: true,
isAndroidForegroundServiceEnabled: true,
},
],
[
'@sentry/react-native',
{
url: 'https://sentry.io/',
note: 'Use SENTRY_AUTH_TOKEN env to authenticate with Sentry.',
project: 'trainlcd',
organization: 'tinykitten',
},
],
'expo-audio',
[
'expo-splash-screen',
{
backgroundColor: '#fff',
image: './assets/splash-icon.png',
},
],
[
'expo-build-properties',
{
ios: {
buildReactNativeFromSource: true,
},
},
],
],
extra: {
eas: {
projectId: 'dad36dde-0056-4760-8eda-37f05e7c9c6c',
},
},
ios: {
buildNumber: '2759',
scheme: IS_DEV ? 'CanaryTrainLCD' : 'ProdTrainLCD',
bundleIdentifier: IS_DEV ? 'me.tinykitten.trainlcd.dev' : 'me.tinykitten.trainlcd',
supportsTablet: true,
},
android: {
package: IS_DEV ? 'me.tinykitten.trainlcd.dev' : 'me.tinykitten.trainlcd',
permissions: [],
versionCode: 100000546,
},
owner: 'trainlcd',
experiments: {
reactCompiler: true,
},
};