app.json
1 { 2 "expo": { 3 "name": "VII Legio", 4 "slug": "vii-legio", 5 "version": "1.0.0", 6 "orientation": "portrait", 7 "userInterfaceStyle": "dark", 8 "backgroundColor": "#07080f", 9 "splash": { 10 "backgroundColor": "#07080f" 11 }, 12 "ios": { 13 "supportsTablet": false, 14 "bundleIdentifier": "com.yourname.viilegio" 15 }, 16 "android": { 17 "adaptiveIcon": { 18 "backgroundColor": "#07080f" 19 }, 20 "package": "com.yourname.viilegio" 21 }, 22 "web": { 23 "bundler": "metro", 24 "output": "static", 25 "favicon": "./assets/favicon.png", 26 "backgroundColor": "#07080f", 27 "themeColor": "#d4a835", 28 "name": "VII Legio" 29 }, 30 "plugins": [ 31 [ 32 "@react-native-async-storage/async-storage", 33 { "exclude": [] } 34 ] 35 ] 36 } 37 }