-
-
Notifications
You must be signed in to change notification settings - Fork 164
Expand file tree
/
Copy pathapp.config.js
More file actions
63 lines (60 loc) · 1.58 KB
/
app.config.js
File metadata and controls
63 lines (60 loc) · 1.58 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
//TODO: check if this import is needed, since secrets are in eas, it might not be the case
import "dotenv/config";
const buildNumber = 52;
module.exports = () => {
return {
name: "NMF.earth",
plugins: [
"expo-localization",
"expo-asset",
"expo-font",
"expo-web-browser",
["expo-camera",
{
"cameraPermission": "Allow $(PRODUCT_NAME) to access your camera",
"microphonePermission": "Allow $(PRODUCT_NAME) to access your microphone",
"recordAudioAndroid": true
}
],
"@react-native-community/datetimepicker",
["@sentry/react-native/expo", {
"organization": process.env.SENTRY_ORG || "nmf",
"project": process.env.SENTRY_PROJECT || "nmf-earth",
}],
"expo-sharing"
],
slug: "not-my-fault-earth",
privacy: "public",
platforms: ["ios", "android"],
version: "0.11.0",
orientation: "portrait",
splash: {
image: "./assets/images/splash.png",
resizeMode: "contain",
backgroundColor: "#ffffff",
},
updates: {
fallbackToCacheTimeout: 0,
},
assetBundlePatterns: ["**/*"],
ios: {
icon: "./assets/images/ios.icon.png",
bundleIdentifier: "nmf.earth",
supportsTablet: true,
buildNumber: buildNumber.toString(),
},
android: {
icon: "./assets/images/android.icon.png",
package: "nmf.earth",
versionCode: buildNumber,
},
extra: {
eas: {
projectId: "9e1873d6-966a-49a3-83bc-10254ac6fb27"
}
},
experiments: {
reactCompiler: true
}
};
};