Skip to content

Commit

Permalink
Merge pull request #1194 from andrew-bierman/fix-app-icon-and-name
Browse files Browse the repository at this point in the history
Fix app icon and name
  • Loading branch information
andrew-bierman authored Aug 25, 2024
2 parents bf1ddfa + a08a4a4 commit 7b4e27e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions apps/expo/app.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"expo": {
"name": "packrat",
"name": "Packrat",
"slug": "packrat",
"version": "1.1.0",
"orientation": "portrait",
Expand All @@ -14,8 +14,8 @@
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/packrat-app-icon.png",
"backgroundColor": "#ffffff"
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#026A9F"
},
"package": "com.andrewbierman.packrat"
},
Expand Down
Binary file modified apps/expo/assets/adaptive-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const LandingPageAccordion = ({ title, content, iconName }) => {
onPress={toggleExpanded}
>
<MaterialIcons
name={expanded ? 'keyboard-arrow-down' : 'keyboard-arrow-up'}
name={expanded ? 'keyboard-arrow-up' : 'keyboard-arrow-down'}
style={styles.icon}
/>
</RButton>
Expand Down

0 comments on commit 7b4e27e

Please sign in to comment.