Tones/app.json

53 lines
1.2 KiB
JSON
Raw Normal View History

2024-08-01 01:57:25 +00:00
{
"expo": {
2025-04-19 16:40:20 +00:00
"name": "Tones",
2025-04-21 22:04:03 +00:00
"slug": "tones",
"version": "1.0.1",
2024-08-01 01:57:25 +00:00
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
2025-08-25 13:58:59 +00:00
"entitlements": {
"aps-environment": "production"
},
"infoPlist": {
"UIBackgroundModes": ["remote-notification"]
},
2024-08-01 01:57:25 +00:00
"supportsTablet": true,
2025-08-25 13:45:25 +00:00
"bundleIdentifier": "com.mattdimegs.tones",
2025-08-25 13:49:15 +00:00
"googleServicesFile": "./GoogleServices/GoogleService-Info.plist"
2024-08-01 01:57:25 +00:00
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
2025-04-21 22:34:36 +00:00
"package": "com.mattdimegs.tones",
2025-08-25 13:49:15 +00:00
"googleServicesFile": "./GoogleServices/google-services.json"
2024-08-01 01:57:25 +00:00
},
"plugins": [
2025-04-19 02:50:53 +00:00
"expo-router",
"expo-font",
2025-08-25 14:19:22 +00:00
"expo-web-browser"
2024-08-01 01:57:25 +00:00
],
"experiments": {
"typedRoutes": true
2025-04-21 22:04:03 +00:00
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "6903a306-dafd-42ab-b010-f0c8205269ad"
}
},
"owner": "mattdimegs"
2024-08-01 01:57:25 +00:00
}
}