This repository was archived by the owner on Sep 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.config.js
More file actions
59 lines (57 loc) · 1.5 KB
/
app.config.js
File metadata and controls
59 lines (57 loc) · 1.5 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
import "dotenv/config";
const ENV = {
API_URL: process.env.API_URL,
API_KEY: process.env.API_KEY,
SOCKET_URL: process.env.SOCKET_URL,
};
export default {
expo: {
name: "Chill&chat",
slug: "chillandchat-mobile",
version: "1.16.2",
orientation: "portrait",
privacy: "public",
icon: "./assets/logo.png",
splash: {
image: "./assets/splash.png",
resizeMode: "contain",
backgroundColor: "#ffffff",
},
updates: {
fallbackToCacheTimeout: 0,
},
assetBundlePatterns: ["**/*"],
ios: {
supportsTablet: false,
bundleIdentifier: "com.chillandchat.mobile",
buildNumber: "21",
infoPlist: {
UIBackgroundModes: ["remote-notification"],
},
},
extra: {
API_URL: ENV.API_URL,
API_KEY: ENV.API_KEY,
SOCKET_URL: ENV.SOCKET_URL,
eas: {
projectId: "2329a990-f032-4541-8051-e99cb541fdea",
},
},
plugins: [
[
"expo-barcode-scanner",
{
cameraPermission:
"Allow Chill&chat(com.chillandchat.mobile) to access your camera for support regarding instant linking (A service to join rooms instantly with a scan of a QR code found in the room identifier.) with Chill&chat QR codes!",
},
],
[
"expo-image-picker",
{
photosPermission:
"Allow Chill&chat(com.chillandchat.mobile) to access your photo library to share/upload them to the Chill&chat cloud service!",
},
],
],
},
};