-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathappBase.jq
82 lines (82 loc) · 2.32 KB
/
appBase.jq
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"expo": {
"name": "ペペロミア",
"slug": "peperomia",
"scheme": "peperomia",
"privacy": "public",
"packagerOpts": {
"sourceExts": ["js", "ts", "tsx"],
"transformer": "node_modules/react-native-typescript-transformer/index.js"
},
"platforms": ["ios", "android"],
"version": "3.0.1",
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#006835"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"notification": {
"icon": "./assets/notificationicon.png",
"color": "#00c2ad",
"iosDisplayInForeground": true
},
"assetBundlePatterns": ["src/**/*"],
"userInterfaceStyle": "automatic",
"ios": {
"googleServicesFile": "./ios/GoogleService-Info.plist",
"userInterfaceStyle": "automatic",
"usesAppleSignIn": true,
"supportsTablet": true,
"buildNumber": "37",
"bundleIdentifier": "com.wheatandcat.peperomia",
"infoPlist": {
"NSPhotoLibraryUsageDescription": "予定作成のために使用します。",
"NSCameraUsageDescription": "予定作成のためにカメラを使用します。",
"CFBundleDevelopmentRegion": "ja_JP"
},
"config": {
"googleSignIn": {
"reservedClientId": $iosGoogleSignInClientId
}
}
},
"android": {
"userInterfaceStyle": "automatic",
"package": "com.wheatandcat.peperomia",
"googleServicesFile": "./android/google-services.json",
"versionCode": 37,
"adaptiveIcon": {
"backgroundColor": "#006835",
"foregroundImage": "./assets/icon-fg.png"
},
"useNextNotificationsApi": true
},
"web": {
"config": {
"firebase": {
"apiKey": $firebaseApiKey,
"measurementId": $measurementId
}
}
},
"description": "ペペロミアは予定管理アプリです。",
"githubUrl": "https://github.com/wheatandcat/Peperomia",
"hooks": {
"postPublish": [
{
"file": "sentry-expo/upload-sourcemaps",
"config": {
"organization": "freelance-km",
"project": "peperomia",
"authToken": $sentryAuthToken
}
}
]
}
}
}