-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.config.ts
More file actions
90 lines (65 loc) · 1.54 KB
/
app.config.ts
File metadata and controls
90 lines (65 loc) · 1.54 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
import type { ConfigContext } from 'expo/config';
export default ({ config }: ConfigContext) => ({
name: 'TrainLCD',
slug: 'trainlcd',
version: '10.1.1',
plugins: [
'expo-font',
'expo-localization',
'expo-web-browser',
'expo-sqlite',
'expo-asset',
[
'expo-location',
{
isAndroidBackgroundLocationEnabled: true,
isAndroidForegroundServiceEnabled: true,
},
],
[
'@sentry/react-native',
{
url: 'https://sentry.io/',
note: 'Use SENTRY_AUTH_TOKEN env to authenticate with Sentry.',
project: process.env.SENTRY_PROJECT_NAME || '',
organization: 'tinykitten',
},
],
'expo-audio',
[
'expo-splash-screen',
{
backgroundColor: '#fff',
image: './assets/splash-icon.png',
},
],
],
extra: {
eas: {
projectId:
process.env.EAS_BUILD_PROJECT_ID ||
'dad36dde-0056-4760-8eda-37f05e7c9c6c',
},
},
ios: {
buildNumber: '2470',
bundleIdentifier:
process.env.EAS_BUILD_PROFILE === 'production'
? 'me.tinykitten.trainlcd'
: 'me.tinykitten.trainlcd.dev',
scheme:
process.env.EAS_BUILD_PROFILE === 'production'
? 'TrainLCD'
: 'CanaryTrainLCD',
supportsTablet: true,
},
android: {
package:
process.env.EAS_BUILD_PROFILE === 'production'
? 'me.tinykitten.trainlcd'
: 'me.tinykitten.trainlcd.dev',
permissions: [],
versionCode: 100000257,
},
owner: 'trainlcd',
});