Skip to content

Commit

Permalink
apk changes
Browse files Browse the repository at this point in the history
  • Loading branch information
leoronne committed Mar 29, 2020
1 parent 67fddff commit 8a417bf
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ yarn startclient
To start the mobile application client you need to install [expo](https://expo.io/learn) on your local machine then, from the root folder, just run:

```sh
yarn installmobile
yarn startmobile
```

<br>
Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/Confirm.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default function Confirm(props) {
notify(`Account verified, thank you!`, '✔️', 'success', 'top-right');
setTimeout(
function () {
history.push('/')
history.push('/login')
},
600
);
Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/UpdatePassword.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default function UpdatePassword() {
notify(`Password updated!`, '✔️', 'success', 'top-right');
setTimeout(
function () {
history.push('/')
history.push('/login')
},
600
);
Expand Down
7 changes: 6 additions & 1 deletion mobile/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,12 @@
"bundleIdentifier": "com.leoronne.bethehero"
},
"android": {
"package": "com.leoronne.bethehero"
"package": "com.leoronne.bethehero",
"icon": "./assets/img/icon.png",
"adaptiveIcon": {
"foregroundImage": "./assets/img/logoTransparent.png",
"backgroundColor": "#E02041"
}
}
}
}
Binary file modified mobile/assets/BeTheHero.apk
Binary file not shown.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"scripts": {
"start": "node server/src/index.js",
"startclient": "cd ./client/ && yarn start",
"startmobile": "cd ./mobile/ && yarn start",
"postinstall": "npm install --prefix server && npm install --prefix client",
"installapp": "cd ./server/ && npm install && cd ../client && yarn install",
"installmobile": "cd ./mobile/ && npm install"
Expand Down

0 comments on commit 8a417bf

Please sign in to comment.