Skip to content

Commit

Permalink
package config
Browse files Browse the repository at this point in the history
  • Loading branch information
raymag committed Jun 4, 2022
1 parent 714bef2 commit daa022b
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 8 deletions.
4 changes: 2 additions & 2 deletions app.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"expo": {
"name": "pomodoro",
"slug": "pomodoro",
"name": "Dr Pomodoro",
"slug": "dr pomodoro",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
Expand Down
31 changes: 31 additions & 0 deletions eas.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"cli": {
"version": ">= 0.42.4"
},
"build": {
"debug": {
"distribution": "internal",
"android": {
"gradleCommand": ":app:assembleDebug"
},
"ios": {
"buildConfiguration": "Debug"
}
},
"development": {
"distribution": "internal",
"extends": "production",
"android": {
"gradleCommand": ":app:assembleRelease"
},
"ios": {
"buildConfiguration": "Release"
}
},
"production": {}
},
"submit": {
"production": {}
}
}

11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{
"name": "pomodoro",
"name": "drpomodoro",
"version": "1.0.0",
"scripts": {
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"eject": "expo eject"
"start": "react-native start --reset-cache",
"android": "react-native run-android",
"ios": "react-native run-ios",
"build": "eas build -p android --profile development"
},
"dependencies": {
"expo": "~45.0.0",
Expand Down

0 comments on commit daa022b

Please sign in to comment.