Skip to content

Commit 34e7c0d

Browse files
committedMar 26, 2025·
fix: 🐛 remove app icon badge
1 parent d9d7905 commit 34e7c0d

File tree

3 files changed

+4
-25
lines changed

3 files changed

+4
-25
lines changed
 

‎challenges/release/02.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ In the next lesson, we are going to build your app and show you how to install i
5555
## 👽 Bonus
5656

5757
- [ ] Check [with-env config](https://github.com/betomoedano/with-environments/blob/main/app.config.ts) and update your `app.config` file.
58-
- [ ] Create new icons like [with-env icons](https://github.com/betomoedano/with-environments/tree/main/assets/images/icons) to have a custom icon for your dev app.
58+
- [ ] [Create new icons with Figma](https://www.figma.com/community/file/1466490409418563617/expo-app-icon-splash-v2-community) like [with-env icons](https://github.com/betomoedano/with-environments/tree/main/assets/images/icons) to have a custom icon for your dev app.

‎hackathon/spacecraft/app.config.ts

+2-22
Original file line numberDiff line numberDiff line change
@@ -41,35 +41,15 @@ export default ({ config }: { config: ExpoConfig }): ExpoConfig => {
4141
},
4242
icon: icon,
4343
ios: {
44-
appStoreUrl:
45-
"https://apps.apple.com/fr/app/retail-shake-scanner/id1234567890",
44+
appStoreUrl: "https://apps.apple.com/fr/app/<compagny_name>/idxxxxxxxxx",
4645
bundleIdentifier: bundleIdentifier,
4746
supportsTablet: true,
4847
},
4948
name: name,
5049
newArchEnabled: true,
5150
orientation: "portrait",
5251
owner: OWNER,
53-
plugins: [
54-
[
55-
"app-icon-badge",
56-
{
57-
badges: [
58-
{
59-
background: "#FF0000",
60-
color: "white",
61-
text: environment,
62-
type: "banner",
63-
},
64-
{
65-
text: version,
66-
type: "ribbon",
67-
},
68-
],
69-
enabled: environment !== "production",
70-
},
71-
],
72-
],
52+
plugins: [],
7353
runtimeVersion: {
7454
policy: "appVersion",
7555
},

‎hackathon/spacecraft/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@
8181
"@types/react-dom": "~18.3.1",
8282
"@typescript-eslint/eslint-plugin": "^7.11.0",
8383
"@typescript-eslint/parser": "^7.11.0",
84-
"app-icon-badge": "^0.1.2",
8584
"babel-loader": "^9.1.3",
8685
"babel-plugin-module-resolver": "^5.0.0",
8786
"babel-plugin-transform-remove-console": "^6.9.4",
@@ -99,4 +98,4 @@
9998
"prettier": "^3.2.5",
10099
"typescript": "~5.3.3"
101100
}
102-
}
101+
}

0 commit comments

Comments
 (0)
Please sign in to comment.