forked from pamelacardoso/techfinance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.ts
More file actions
44 lines (43 loc) · 1.17 KB
/
app.config.ts
File metadata and controls
44 lines (43 loc) · 1.17 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
import { ConfigContext, ExpoConfig } from 'expo/config';
export default ({ config }: ConfigContext): ExpoConfig => ({
...config,
name: "techfinance",
slug: "techfinance",
scheme: "techfinance",
version: "1.0.0",
orientation: "portrait",
owner: "techfinance",
icon: "./assets/icon.png",
userInterfaceStyle: "light",
newArchEnabled: true,
splash: {
image: "./assets/splash.png",
resizeMode: "contain",
backgroundColor: "#ffffff"
},
ios: {
supportsTablet: true,
bundleIdentifier: "com.techfinance.app"
},
android: {
adaptiveIcon: {
foregroundImage: "./assets/adaptive-icon.png",
backgroundColor: "#ffffff"
},
package: "br.com.techfinance.app"
},
web: {
favicon: "./assets/favicon.png"
},
plugins: [
"expo-router"
],
extra: {
OPENAI_API_KEY: process.env.OPENAI_API_KEY || '',
API_BASE_URL: process.env.API_BASE_URL || 'https://techfinance-api.fly.dev/',
API_TOKEN: process.env.API_TOKEN || '',
eas: {
projectId: "b482baa0-eb1e-4501-a7b0-9878a9beb8fa",
}
},
});