Skip to content

Commit 39562ff

Browse files
committed
chore: update sandbox app configuration and add EAS build settings
- Renamed app to "sandbox-primitives" and updated slug. - Added infoPlist entry for iOS to specify encryption usage. - Introduced eas.json for build and submission configurations.
1 parent 9917cc5 commit 39562ff

File tree

2 files changed

+34
-4
lines changed

2 files changed

+34
-4
lines changed

apps/sandbox/app.json

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"expo": {
3-
"name": "sandbox",
4-
"slug": "sandbox",
3+
"name": "sandbox-primitives",
4+
"slug": "sandbox-primitives",
55
"version": "1.0.0",
66
"orientation": "portrait",
77
"icon": "./assets/icon.png",
@@ -15,7 +15,10 @@
1515
},
1616
"ios": {
1717
"supportsTablet": true,
18-
"bundleIdentifier": "com.theoribbi.sandboxprimitives"
18+
"bundleIdentifier": "com.theoribbi.sandboxprimitives",
19+
"infoPlist": {
20+
"ITSAppUsesNonExemptEncryption": false
21+
}
1922
},
2023
"android": {
2124
"package": "com.theoribbi.sandboxprimitives",
@@ -47,6 +50,12 @@
4750
"plugins": [
4851
"expo-router",
4952
"@native-ui-org/native-modules"
50-
]
53+
],
54+
"extra": {
55+
"router": {},
56+
"eas": {
57+
"projectId": "f972e551-2fb7-4750-9ed9-f73c7dd6e738"
58+
}
59+
}
5160
}
5261
}

apps/sandbox/eas.json

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

0 commit comments

Comments
 (0)