Tones/app.json

35 lines
784 B
JSON
Raw Normal View History

2024-08-01 01:57:25 +00:00
{
"expo": {
2025-04-19 16:40:20 +00:00
"name": "Tones",
"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": {
"supportsTablet": true,
"bundleIdentifier": "com.anonymous.testapplication"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.anonymous.testapplication"
},
"plugins": [
2025-04-19 02:50:53 +00:00
"expo-router",
"expo-font"
2024-08-01 01:57:25 +00:00
],
"experiments": {
"typedRoutes": true
}
}
}