| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- {
- "expo": {
- "name": "Loan Assistant",
- "slug": "assistant",
- "version": "1.0.1",
- "orientation": "portrait",
- "icon": "./assets/images/icon.png",
- "scheme": "loanassistant",
- "userInterfaceStyle": "light",
- "runtimeVersion": {
- "policy": "appVersion"
- },
- "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": {
- "bundler": "metro",
- "output": "static",
- "favicon": "./assets/images/favicon.png",
- "experiments": {
- "baseUrl": "/h5"
- }
- },
- "plugins": [
- "expo-router",
- [
- "expo-splash-screen",
- {
- "backgroundColor": "#208AEF",
- "android": {
- "image": "./assets/images/splash-icon.png",
- "imageWidth": 76
- }
- }
- ],
- [
- "expo-file-system",
- {
- "supportsOpeningDocumentsInPlace": true,
- "enableFileSharing": true
- }
- ],
- [
- "expo-build-properties",
- {
- "android": {
- "enableMinifyInReleaseBuilds": true,
- "enableBundleCompression": true
- }
- }
- ],
- "expo-web-browser"
- ],
- "experiments": {
- "typedRoutes": true,
- "reactCompiler": true,
- "baseUrl": "/h5"
- },
- "updates": {
- "enabled": true,
- "checkAutomatically": "NEVER",
- "url": "https://updates-loan.ewaga.com/api/manifest",
- "fallbackToCacheTimeout": 30000,
- "codeSigningCertificate": "./code-signing/certificate.pem",
- "codeSigningMetadata": {
- "keyid": "main",
- "alg": "rsa-v1_5-sha256"
- }
- }
- }
- }
|