Skip to content

Commit 8022b3a

Browse files
committed
feat(mobile): add iOS support and fix editor loading issues
1 parent f642a1b commit 8022b3a

File tree

4 files changed

+12080
-16
lines changed

4 files changed

+12080
-16
lines changed

apps/mobile/v1/app.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,14 @@
2727
"android"
2828
],
2929
"ios": {
30-
"bundleIdentifier": "com.typelets.notes",
30+
"bundleIdentifier": "com.typelets.mobile.ios",
3131
"buildNumber": "15",
3232
"supportsTablet": true,
3333
"infoPlist": {
3434
"NSCameraUsageDescription": "This app uses the camera to capture photos for your notes.",
3535
"NSPhotoLibraryUsageDescription": "This app accesses your photo library to attach images to your notes.",
36-
"NSMicrophoneUsageDescription": "This app uses the microphone to record audio notes."
36+
"NSMicrophoneUsageDescription": "This app uses the microphone to record audio notes.",
37+
"ITSAppUsesNonExemptEncryption": false
3738
}
3839
},
3940
"android": {

apps/mobile/v1/eas.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,21 @@
66
"build": {
77
"development": {
88
"developmentClient": true,
9-
"distribution": "internal"
9+
"distribution": "internal",
10+
"env": {
11+
"RCT_NEW_ARCH_ENABLED": "1"
12+
}
1013
},
1114
"preview": {
12-
"distribution": "internal"
15+
"distribution": "internal",
16+
"env": {
17+
"RCT_NEW_ARCH_ENABLED": "1"
18+
}
1319
},
1420
"production": {
1521
"autoIncrement": true,
1622
"env": {
17-
"RCT_NEW_ARCH_ENABLED": "0"
23+
"RCT_NEW_ARCH_ENABLED": "1"
1824
}
1925
}
2026
},

0 commit comments

Comments
 (0)