-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.js
More file actions
45 lines (44 loc) · 1.06 KB
/
app.config.js
File metadata and controls
45 lines (44 loc) · 1.06 KB
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
import "dotenv/config";
export default {
expo: {
name: "app-pia",
owner: "dieg0code",
slug: "app-pia",
version: "1.0.0",
orientation: "portrait",
icon: "./assets/images/icon.png",
scheme: "myapp",
userInterfaceStyle: "automatic",
splash: {
image: "./assets/images/splash.png",
resizeMode: "contain",
backgroundColor: "#FCFEFD",
},
ios: {
supportsTablet: true,
},
android: {
// softwareKeyboardLayoutMode: "pan",
package: "com.dieg0code.apppia",
permissions: ["INTERNET"],
androidStatusBar: {
barStyle: "dark-content",
backgroundColor: "#0D0D0D",
},
adaptiveIcon: {
foregroundImage: "./assets/images/adaptive-icon.png",
backgroundColor: "#FCFEFD",
},
},
web: {
bundler: "metro",
},
extra: {
supabaseUrl: process.env.EXPO_PUBLIC_SUPABASE_URL,
supabaseAnonKey: process.env.EXPO_PUBLIC_SUPABASE_ANON_KEY,
eas: {
projectId: "b5953624-d62d-4be4-99f7-ccf932588687",
},
},
},
};