Skip to content

Commit

Permalink
chore: build settings
Browse files Browse the repository at this point in the history
  • Loading branch information
berenteb committed Mar 5, 2024
1 parent 168548f commit 828f914
Show file tree
Hide file tree
Showing 5 changed files with 1,092 additions and 83 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,5 @@ ios
.idea/workspace.xml

.env
google-service-account-key.json

4 changes: 2 additions & 2 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
"ios": {
"icon": "./assets/icon.png",
"supportsTablet": true,
"bundleIdentifier": "com.kirdev.konferenciapp"
"bundleIdentifier": "hu.kirdev.konferenciapp"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#000000"
},
"package": "com.kirdev.konferenciapp"
"package": "hu.kirdev.konferenciapp"
},
"extra": {
"eas": {
Expand Down
19 changes: 19 additions & 0 deletions eas.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"cli": {
"version": ">= 7.3.0",
"appVersionSource": "remote"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal"
},
"preview": {
"distribution": "internal"
},
"production": {}
},
"submit": {
"production": {}
}
}
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@
"lint": "eslint \"./**/*.ts?(x)\" --fix",
"lint:check": "eslint \"./**/*.ts?(x)\"",
"prettier": "prettier --write \"**/*.(ts|tsx)\"",
"prettier:check": "prettier --check \"**/*.(ts|tsx)\""
"prettier:check": "prettier --check \"**/*.(ts|tsx)\"",
"build:android": "eas build --platform android",
"build:ios": "eas build --platform ios",
"submit:android": "eas submit --platform android",
"submit:ios": "eas submit --platform ios"
},
"dependencies": {
"@expo/vector-icons": "^13.0.0",
Expand All @@ -21,6 +25,7 @@
"clsx": "^2.1.0",
"date-fns": "^3.2.0",
"dotenv": "^16.4.1",
"eas-cli": "^7.3.0",
"env-var": "^7.4.1",
"expo": "~49.0.21",
"expo-constants": "~14.4.2",
Expand Down
Loading

0 comments on commit 828f914

Please sign in to comment.