- Created Info.plist with essential app configuration including bundle identifiers, versioning, and URL schemes. - Added PrivacyInfo.xcprivacy to specify accessed API types and privacy tracking settings. - Implemented SplashScreen.storyboard for the app's launch screen with a logo and background color. - Established Expo.plist for update configurations, setting updates to check on launch. - Created a bridging header for Swift compatibility. - Added an empty entitlements file for future use.
44 lines
1001 B
JSON
44 lines
1001 B
JSON
{
|
|
"expo": {
|
|
"name": "iso-test-app",
|
|
"slug": "iso-test-app",
|
|
"version": "1.0.0",
|
|
"orientation": "portrait",
|
|
"icon": "./assets/images/icon.png",
|
|
"scheme": "isotestapp",
|
|
"userInterfaceStyle": "automatic",
|
|
"newArchEnabled": true,
|
|
"ios": {
|
|
"supportsTablet": true,
|
|
"bundleIdentifier": "com.anonymous.iso-test-app"
|
|
},
|
|
"android": {
|
|
"adaptiveIcon": {
|
|
"foregroundImage": "./assets/images/adaptive-icon.png",
|
|
"backgroundColor": "#ffffff"
|
|
},
|
|
"edgeToEdgeEnabled": true
|
|
},
|
|
"web": {
|
|
"bundler": "metro",
|
|
"output": "static",
|
|
"favicon": "./assets/images/favicon.png"
|
|
},
|
|
"plugins": [
|
|
"expo-router",
|
|
[
|
|
"expo-splash-screen",
|
|
{
|
|
"image": "./assets/images/splash-icon.png",
|
|
"imageWidth": 200,
|
|
"resizeMode": "contain",
|
|
"backgroundColor": "#ffffff"
|
|
}
|
|
]
|
|
],
|
|
"experiments": {
|
|
"typedRoutes": true
|
|
}
|
|
}
|
|
}
|