Skip to content

Commit 665fcca

Browse files
committed
feat: Update app configuration and add EAS build settings
1 parent 1e01b04 commit 665fcca

File tree

2 files changed

+35
-5
lines changed

2 files changed

+35
-5
lines changed

mobile/app.json

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
{
22
"expo": {
3-
"name": "Splitwiser Mobile",
4-
"slug": "splitwiser-mobile",
3+
"name": "frontend",
4+
"slug": "frontend",
5+
"platforms": ["ios", "android", "web"],
56
"version": "1.0.0",
67
"orientation": "portrait",
78
"icon": "./assets/icon.png",
89
"userInterfaceStyle": "light",
10+
"newArchEnabled": true,
911
"splash": {
10-
"image": "./assets/splash.png",
12+
"image": "./assets/splash-icon.png",
1113
"resizeMode": "contain",
1214
"backgroundColor": "#ffffff"
1315
},
@@ -16,13 +18,18 @@
1618
],
1719
"ios": {
1820
"supportsTablet": true,
19-
"bundleIdentifier": "com.splitwiser.mobile"
21+
"bundleIdentifier": "com.splitwiser.mobile",
22+
"infoPlist": {
23+
"NSPhotoLibraryUsageDescription": "Allow Splitwiser to select a group icon from your photo library."
24+
}
2025
},
2126
"android": {
2227
"adaptiveIcon": {
2328
"foregroundImage": "./assets/adaptive-icon.png",
2429
"backgroundColor": "#ffffff"
2530
},
31+
"edgeToEdgeEnabled": true,
32+
"permissions": ["READ_MEDIA_IMAGES"],
2633
"package": "com.splitwiser.mobile"
2734
},
2835
"web": {
@@ -45,6 +52,11 @@
4552
]
4653
],
4754
"scheme": "splitwiser",
48-
"newArchEnabled": true
55+
"extra": {
56+
"eas": {
57+
"projectId": "afe97159-52c4-425a-9ce3-c56d4f2cb568"
58+
}
59+
},
60+
"owner": "devasy23"
4961
}
5062
}

mobile/eas.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"cli": {
3+
"version": ">= 7.6.0"
4+
},
5+
"build": {
6+
"development": {
7+
"developmentClient": true,
8+
"distribution": "internal"
9+
},
10+
"preview": {
11+
"distribution": "internal"
12+
},
13+
"production": {}
14+
},
15+
"submit": {
16+
"production": {}
17+
}
18+
}

0 commit comments

Comments
 (0)