feat(app.json): add bundleIdentifier for iOS and projectId for EAS

📦 feat(package.json): add expo-system-ui dependency for better system UI handling
📄 docs(eas.json): add new eas.json file for Expo Application Services configuration
This commit is contained in:
Djalim Simaila 2024-04-05 00:54:33 +02:00
parent e650cb6114
commit 69f7bfd78c
4 changed files with 26 additions and 1 deletions

View File

@ -15,7 +15,8 @@
"**/*"
],
"ios": {
"supportsTablet": true
"supportsTablet": true,
"bundleIdentifier": "fr.simailadjalim.ClipSync"
},
"android": {
"adaptiveIcon": {
@ -26,6 +27,11 @@
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"eas": {
"projectId": "ab833c64-cfd1-4662-9e49-ba54e476803e"
}
}
}
}

BIN
bun.lockb

Binary file not shown.

18
eas.json Normal file
View File

@ -0,0 +1,18 @@
{
"cli": {
"version": ">= 7.6.2"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal"
},
"preview": {
"distribution": "internal"
},
"production": {}
},
"submit": {
"production": {}
}
}

View File

@ -20,6 +20,7 @@
"expo": "~50.0.14",
"expo-clipboard": "~5.0.1",
"expo-status-bar": "~1.11.1",
"expo-system-ui": "^2.9.3",
"react": "18.2.0",
"react-native": "0.73.6",
"react-native-android-notification-listener": "^5.0.1",