| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {
- "expo": {
- "name": "crazycharge",
- "slug": "template",
- "version": "1.1.1",
- "orientation": "portrait",
- "icon": "./assets/CC_Logo.png",
- "userInterfaceStyle": "light",
- "scheme": "ccscheme",
- "splash": {
- "image": "./assets/splash.png",
- "resizeMode": "contain",
- "backgroundColor": "#02677D"
- },
- "assetBundlePatterns": ["**/*"],
- "ios": {
- "supportsTablet": true,
- "bundleIdentifier": "hk.com.crazycharge"
- },
- "android": {
- "adaptiveIcon": {
- "foregroundImage": "./assets/adaptive-icon.png",
- "backgroundColor": "#ffffff"
- },
- "permissions": ["android.permission.CAMERA", "android.permission.RECORD_AUDIO"],
- "package": "hk.com.crazycharge"
- },
- "web": {
- "favicon": "./assets/favicon.png"
- },
- "plugins": [
- "expo-router",
- "expo-secure-store",
- [
- "expo-camera",
- {
- "cameraPermission": "Allow $(PRODUCT_NAME) to access your camera",
- "microphonePermission": "Allow $(PRODUCT_NAME) to access your microphone",
- "recordAudioAndroid": true
- }
- ]
- ],
- "extra": {
- "router": {
- "origin": false
- },
- "eas": {
- "projectId": "536e7cff-9f65-4894-ad9f-e4ef8de57e4e"
- }
- }
- }
- }
|