| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "expo": {
- "name": "Loan Assistant",
- "slug": "assistant",
- "version": "1.0.0",
- "orientation": "portrait",
- "icon": "./assets/images/icon.png",
- "scheme": "loanassistant",
- "userInterfaceStyle": "light",
- "ios": {
- "icon": "./assets/expo.icon",
- "bundleIdentifier": "com.cdloan.assistant",
- "buildNumber": "1",
- "infoPlist": {
- "CFBundleDisplayName": "借贷助手",
- "NSCameraUsageDescription": "需要访问相机权限以扫描二维码",
- "NSPhotoLibraryUsageDescription": "需要访问照片权限以选择图片"
- }
- },
- "android": {
- "adaptiveIcon": {
- "backgroundColor": "#E6F4FE",
- "foregroundImage": "./assets/images/android-icon-foreground.png",
- "backgroundImage": "./assets/images/android-icon-background.png",
- "monochromeImage": "./assets/images/android-icon-monochrome.png"
- },
- "predictiveBackGestureEnabled": false,
- "package": "com.cdloan.assistant",
- "versionCode": 1,
- "permissions": [
- "CAMERA",
- "READ_MEDIA_IMAGES",
- "READ_MEDIA_VIDEO"
- ]
- },
- "web": {
- "output": "static",
- "favicon": "./assets/images/favicon.png"
- },
- "plugins": [
- "expo-router",
- [
- "expo-splash-screen",
- {
- "backgroundColor": "#208AEF",
- "android": {
- "image": "./assets/images/splash-icon.png",
- "imageWidth": 76
- }
- }
- ]
- ],
- "experiments": {
- "typedRoutes": true,
- "reactCompiler": true
- }
- }
- }
|