forked from micahlt/itchy-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.js
More file actions
93 lines (93 loc) · 2.51 KB
/
Copy pathapp.config.js
File metadata and controls
93 lines (93 loc) · 2.51 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
module.exports = {
expo: {
name: "Itchy",
slug: "itchy-native",
version: "2.6.6",
scheme: "itchy",
newArchEnabled: true,
plugins: [
"@react-native-firebase/app",
"@react-native-firebase/crashlytics",
[
"expo-build-properties",
{
ios: {
useFrameworks: "static",
reactNativeReleaseLevel: "experimental",
forceStaticLinking: ["FastSquircle"],
},
android: {
compileSdkVersion: 35,
targetSdkVersion: 35,
buildToolsVersion: "35.0.0",
kotlinVersion: "2.2.20",
reactNativeReleaseLevel: "experimental",
},
},
],
"expo-router",
"react-native-bottom-tabs",
[
"expo-asset",
{
assets: [
"assets/icons/search_24_black.png",
"assets/icons/search_24_white.png",
],
},
],
[
"react-native-edge-to-edge",
{
android: {
parentTheme: "Material3",
enforceNavigationBarContrast: false,
},
},
],
[
"expo-font",
{
fonts: [
"./node_modules/@expo-google-fonts/inter/400Regular/Inter_400Regular.ttf",
"./node_modules/@expo-google-fonts/inter/700Bold/Inter_700Bold.ttf",
"./node_modules/@expo-google-fonts/inter/900Black/Inter_900Black.ttf",
],
},
],
],
splash: {
image: "./assets/splash.png",
backgroundColor: "#0082FF",
},
userInterfaceStyle: "automatic",
android: {
versionCode: 62,
package: "org.scratchclient4.itchy",
adaptiveIcon: {
backgroundColor: "#0082FF",
foregroundImage: "./assets/icon-foreground.png",
monochromeImage: "./assets/icon-monochrome.png",
},
edgeToEdgeEnabled: true,
predictiveBackGestureEnabled: false,
googleServicesFile: process.env.GOOGLE_SERVICES_JSON || "./google-services.json",
},
ios: {
bundleIdentifier: "org.scratchclient4.itchy",
icon: "./assets/iosicon.icon",
infoPlist: {
NSCameraUsageDescription:
"Itchy needs access to the camera to support projects that include camera features.",
},
googleServicesFile: process.env.GOOGLE_SERVICES_PLIST || "./GoogleService-Info.plist",
},
extra: {
router: {},
eas: {
projectId: "e49aa4db-4fa4-4ccc-a105-1a16aa4084e4",
},
},
owner: "itchy-team",
},
};