Complete the code to define the app name in app.json for App Store submission.
{
"expo": {
"name": "[1]",
"slug": "my-app"
}
}The name field in app.json should be a readable app name without special characters like exclamation marks.
Complete the code to set the iOS bundle identifier in app.json for App Store submission.
{
"expo": {
"ios": {
"bundleIdentifier": "com.example.[1]"
}
}
}The bundleIdentifier must be a reverse domain style string without spaces or special characters.
Fix the error in the app.json snippet to correctly specify the app version for App Store submission.
{
"expo": {
"version": "[1]"
}
}The version should follow semantic versioning like 1.0.0 without prefixes.
Fill both blanks to set the correct app icon and splash screen image paths in app.json.
{
"expo": {
"icon": "[1]",
"splash": {
"image": "[2]"
}
}
}The app icon and splash screen images should be PNG files located in the assets folder.
Fill all three blanks to configure the iOS build number, supportsTablet flag, and app category in app.json.
{
"expo": {
"ios": {
"buildNumber": "[1]",
"supportsTablet": [2],
"bundleIdentifier": "com.example.myapp",
"infoPlist": {
"CFBundleCategory": "[3]"
}
}
}
}The buildNumber is a string number, supportsTablet is a boolean, and CFBundleCategory is a valid App Store category identifier.