- 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.
12 lines
364 B
Plaintext
12 lines
364 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>EXUpdatesCheckOnLaunch</key>
|
|
<string>ALWAYS</string>
|
|
<key>EXUpdatesEnabled</key>
|
|
<false/>
|
|
<key>EXUpdatesLaunchWaitMs</key>
|
|
<integer>0</integer>
|
|
</dict>
|
|
</plist> |