-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
executable file
·38 lines (38 loc) · 1.04 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
{
"expo": {
"name": "Accounting App",
"slug": "accounting-app",
"privacy": "public",
"sdkVersion": "31.0.0",
"platforms": [
"ios",
"android"
],
"version": "1.3.4",
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#1D1D4E"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.techhaste.kakarnyori"
},
"android": {
"package": "com.techhaste.kakarnyori",
"versionCode": 3,
"permissions": []
},
"description": "A minimalist app to simplify your financial and accounting problems. You can plan expenditures and estimated budgets, and keep a note of your daily expenses in a very minimalistic approach to your personal finance management.",
"primaryColor": "#4745CE",
"githubUrl": "https://github.com/KakarN/AccountingApp"
}
}