xtablo-source/xtablo-expo/app.json

56 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2025-04-28 06:01:42 +00:00
{
"expo": {
2025-07-16 20:28:20 +00:00
"name": "xtablo",
2025-07-22 05:52:06 +00:00
"slug": "xtablo-expo",
2025-04-28 06:01:42 +00:00
"version": "1.0.0",
"orientation": "portrait",
2025-07-29 19:24:38 +00:00
"icon": "./assets/images/logo.png",
2025-07-16 20:28:20 +00:00
"scheme": "com.xtablo.app",
2025-04-28 06:01:42 +00:00
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
2025-08-01 20:49:54 +00:00
"usesAppleSignIn": true,
2025-07-16 20:28:20 +00:00
"supportsTablet": true,
"bundleIdentifier": "com.xtablo.app",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false
}
2025-04-28 06:01:42 +00:00
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
2025-07-16 20:28:20 +00:00
},
"package": "com.xtablo.app"
2025-04-28 06:01:42 +00:00
},
"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"
}
2025-07-16 20:28:20 +00:00
],
2025-08-01 20:49:54 +00:00
"expo-secure-store",
"expo-apple-authentication"
2025-04-28 06:01:42 +00:00
],
"experiments": {
"typedRoutes": true
2025-07-16 20:28:20 +00:00
},
"extra": {
"router": {},
"eas": {
"projectId": "a3acc825-7c18-4cd4-83c7-60836639decc"
}
2025-04-28 06:01:42 +00:00
}
}
}