-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.config.js
More file actions
35 lines (34 loc) · 847 Bytes
/
app.config.js
File metadata and controls
35 lines (34 loc) · 847 Bytes
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
/**
* written by: Team QuickPay
* tested by: Team QuickPay
* debugged by: Team QuickPay
* Notes: Contributions were shared, see GitHub history for commit details.
* Unit Tests for UserSyncService
*/
import "dotenv/config";
export default {
expo: {
name: "QuickPay",
slug: "quickpay",
scheme: "quickpay",
version: "1.0.0",
orientation: "portrait",
owner: "seththarohour",
android: {
package: "com.anonymous.quickpay",
adaptiveIcon: {
foregroundImage: "./assets/images/adaptive-icon.png",
backgroundColor: "#ffffff"
}
},
ios: {
bundleIdentifier: "com.anonymous.quickpay"
},
extra: {
clerkPublishableKey: process.env.EXPO_PUBLIC_CLERK_PUBLISHABLE_KEY,
"eas": {
"projectId": "9e19f686-2e17-4c88-83d5-f294adbb5f19"
},
},
},
};