/ app.json
app.json
1 { 2 "expo": { 3 "name": "ACDC Wallet", 4 "slug": "acdc-wallet", 5 "version": "0.1.0", 6 "orientation": "portrait", 7 "icon": "./assets/icon.png", 8 "scheme": "acdc", 9 "userInterfaceStyle": "automatic", 10 "splash": { 11 "image": "./assets/splash.png", 12 "resizeMode": "contain", 13 "backgroundColor": "#6366F1" 14 }, 15 "assetBundlePatterns": ["**/*"], 16 "ios": { 17 "supportsTablet": true, 18 "bundleIdentifier": "network.acdc.wallet", 19 "infoPlist": { 20 "NSFaceIDUsageDescription": "Use Face ID to unlock your wallet", 21 "NSCameraUsageDescription": "Scan QR codes to receive payments" 22 } 23 }, 24 "android": { 25 "adaptiveIcon": { 26 "foregroundImage": "./assets/adaptive-icon.png", 27 "backgroundColor": "#6366F1" 28 }, 29 "package": "network.acdc.wallet", 30 "permissions": [ 31 "android.permission.CAMERA", 32 "android.permission.USE_BIOMETRIC", 33 "android.permission.USE_FINGERPRINT" 34 ] 35 }, 36 "web": { 37 "bundler": "metro", 38 "output": "static", 39 "favicon": "./assets/favicon.png" 40 }, 41 "plugins": [ 42 "expo-router", 43 "expo-secure-store", 44 [ 45 "expo-local-authentication", 46 { 47 "faceIDPermission": "Allow ACDC Wallet to use Face ID" 48 } 49 ], 50 [ 51 "expo-camera", 52 { 53 "cameraPermission": "Allow ACDC Wallet to access your camera to scan QR codes" 54 } 55 ] 56 ], 57 "experiments": { 58 "typedRoutes": true 59 } 60 } 61 }