Skip to content

Commit 86fdeab

Browse files
committed
chore: Configure EAS build and iOS app settings
- Add EAS project configuration for build and submission - Set iOS bundle identifier for app store - Disable non-exempt encryption flag for iOS - Prepare app for EAS build and deployment workflow
1 parent 7fc1a12 commit 86fdeab

File tree

2 files changed

+31
-3
lines changed

2 files changed

+31
-3
lines changed

app.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@
1818
"ios": {
1919
"supportsTablet": true,
2020
"infoPlist": {
21-
"NSMagnetometerUsageDescription": "This app uses the magnetometer to detect EMF radiation levels in your environment."
22-
}
21+
"NSMagnetometerUsageDescription": "This app uses the magnetometer to detect EMF radiation levels in your environment.",
22+
"ITSAppUsesNonExemptEncryption": false
23+
},
24+
"bundleIdentifier": "com.retainr.io.emfradiationdetectorapp"
2325
},
2426
"android": {
2527
"adaptiveIcon": {
@@ -48,6 +50,11 @@
4850
}
4951
]
5052
],
51-
"description": "An app to detect and monitor EMF radiation in your environment."
53+
"description": "An app to detect and monitor EMF radiation in your environment.",
54+
"extra": {
55+
"eas": {
56+
"projectId": "27414b8e-d50e-4afe-bb7c-08e6de2aa227"
57+
}
58+
}
5259
}
5360
}

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": ">= 15.0.14",
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)