-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.js
More file actions
55 lines (55 loc) · 2.01 KB
/
Copy pathapp.config.js
File metadata and controls
55 lines (55 loc) · 2.01 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
// The single source of Expo config (there is no app.json). It is a .js file
// specifically so runtimeVersion can carry the warning below — a JSON file
// cannot hold a comment at the value, and getting that value wrong silently
// breaks OTA for every installed app.
//
// runtimeVersion is the native-ABI identity of a build: an OTA update only
// reaches installed apps whose runtimeVersion MATCHES the one it was published
// under. It is deliberately PINNED and DECOUPLED from `version` (the marketing
// version, which every release bumps freely).
//
// DO NOT set runtimeVersion to `version` or bump it on an ordinary release —
// that publishes OTA updates under a runtime no installed binary has, silently
// cutting every phone off from updates. Change it ONLY when you ship a new APK
// containing a native change (new native module, icon, or native app config),
// to that new build's runtime. See mobile/DEPLOYMENT.md.
module.exports = {
expo: {
name: 'One Concept',
slug: 'one-concept',
owner: 'coding-moves',
version: '1.7.1',
orientation: 'portrait',
icon: './assets/icon.png',
userInterfaceStyle: 'automatic',
ios: {
supportsTablet: true,
},
android: {
package: 'com.codingmoves.oneconcept',
googleServicesFile: './google-services.json',
adaptiveIcon: {
backgroundColor: '#E6F4FE',
foregroundImage: './assets/android-icon-foreground.png',
backgroundImage: './assets/android-icon-background.png',
monochromeImage: './assets/android-icon-monochrome.png',
},
predictiveBackGestureEnabled: false,
},
runtimeVersion: '1.3.0',
updates: {
checkAutomatically: 'ON_LOAD',
fallbackToCacheTimeout: 0,
url: 'https://u.expo.dev/2ce53ebe-f549-4a33-affc-a50d8e80b483',
},
web: {
favicon: './assets/favicon.png',
},
plugins: ['expo-font', 'expo-secure-store', 'expo-splash-screen'],
extra: {
eas: {
projectId: '2ce53ebe-f549-4a33-affc-a50d8e80b483',
},
},
},
};