-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
75 lines (75 loc) · 1.71 KB
/
app.json
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
{
"expo": {
"name": "Contador de Truco",
"slug": "contador-de-truco",
"description": "Contador de Truco",
"version": "3.0.0",
"userInterfaceStyle": "dark",
"platforms": [
"ios",
"android"
],
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "cover",
"backgroundColor": "#2666DE"
},
"assetBundlePatterns": [
"**/*"
],
"experiments": {
"typedRoutes": true,
"tsconfigPaths": true
},
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.bruno.truco",
"buildNumber": "3.0.0"
},
"androidStatusBar": {
"translucent": true
},
"androidNavigationBar": {
"backgroundColor": "#171719"
},
"android": {
"softwareKeyboardLayoutMode": "pan",
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#2666DE"
},
"package": "com.bruno.truco",
"versionCode": 11
},
"plugins": [
"expo-router",
[
"expo-build-properties",
{
"ios": {
"useFrameworks": "static"
}
}
]
],
"extra": {
"eas": {
"projectId": "64692803-8376-4c3f-a2ce-c96d8618782e"
}
},
"runtimeVersion": {
"policy": "sdkVersion"
},
"updates": {
"url": "https://u.expo.dev/64692803-8376-4c3f-a2ce-c96d8618782e"
},
"owner": "brunowilliang"
},
"react-native-google-mobile-ads": {
"android_app_id": "ca-app-pub-9513215669385884~8690869692",
"ios_app_id": "ca-app-pub-9513215669385884~9140665524"
}
}