Files
Mobile/app.json
b3ni15 0bac2dd4f6 Add initial iOS project structure for Vegas Blackjack
- Created SplashScreenBackground image asset with multiple scales.
- Added image file for SplashScreenBackground.
- Initialized Info.plist with essential app configuration.
- Created SplashScreen storyboard for launch screen design.
- Added Expo.plist for update configurations.
- Created bridging header for Swift compatibility.
- Added entitlements for in-app payments.
- Implemented main entry point for the application.
- Added a placeholder Swift file for native module compatibility.
2025-12-21 00:37:27 +01:00

42 lines
884 B
JSON

{
"expo": {
"name": "Vegas Blackjack",
"slug": "vegas-blackjack",
"scheme": "blackjack",
"version": "1.0.0",
"orientation": "default",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#0b1f17"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"plugins": [
[
"@stripe/stripe-react-native",
{
"merchantIdentifier": "merchant.com.devbeni.vegasblackjack",
"enableGooglePay": true
}
]
],
"extra": {
"eas": {
"projectId": "00000000-0000-0000-0000-000000000000"
}
},
"ios": {
"bundleIdentifier": "com.devbeni.vegas-blackjack"
},
"android": {
"package": "com.devbeni.vegasblackjack"
}
}
}