Skip to content

Commit b95c01f

Browse files
authored
Add app images and update app name (#138)
1 parent 00cdd45 commit b95c01f

File tree

6 files changed

+21
-6
lines changed

6 files changed

+21
-6
lines changed

packages/ironfish-native-module/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"prepublishOnly": "expo-module prepublishOnly",
1616
"expo-module": "expo-module",
1717
"cargo-ios": "tsx scripts/cargo-ios.ts",
18+
"cargo-ios-native": "tsx scripts/cargo-ios.ts --target=ios",
1819
"cargo-ios-sim": "tsx scripts/cargo-ios.ts --target=ios-sim",
1920
"cargo-android": "tsx scripts/cargo-android.ts",
2021
"build-rust": "npm run cargo-android && npm run cargo-ios -- --target=ios-sim",

packages/mobile-app/app.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"expo": {
3-
"name": "mobile-app",
4-
"slug": "mobile-app",
3+
"name": "Iron Fish",
4+
"slug": "ironfishwallet",
55
"scheme": "ironfishwallet",
66
"version": "1.0.0",
77
"orientation": "portrait",
@@ -10,11 +10,12 @@
1010
"splash": {
1111
"image": "./assets/splash.png",
1212
"resizeMode": "contain",
13-
"backgroundColor": "#ffffff"
13+
"backgroundColor": "#de83f0"
1414
},
1515
"assetBundlePatterns": ["**/*"],
1616
"ios": {
17-
"bundleIdentifier": "com.ironfish.mobileapp",
17+
"icon": "./assets/icon.png",
18+
"bundleIdentifier": "network.ironfish.mobilewallet",
1819
"infoPlist": {
1920
"NSAppTransportSecurity": {
2021
"NSAllowsArbitraryLoads": false,
@@ -39,9 +40,9 @@
3940
"android": {
4041
"adaptiveIcon": {
4142
"foregroundImage": "./assets/adaptive-icon.png",
42-
"backgroundColor": "#ffffff"
43+
"backgroundColor": "#de83f0"
4344
},
44-
"package": "com.ironfish.mobileapp"
45+
"package": "network.ironfish.mobilewallet"
4546
},
4647
"plugins": ["expo-router", "expo-secure-store", "expo-font", "expo-sqlite"]
4748
}
-55 Bytes
Loading

packages/mobile-app/assets/icon.png

467 KB
Loading

packages/mobile-app/assets/splash.png

-16.9 KB
Loading

packages/mobile-app/project.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,22 @@
1414
"{workspaceRoot}/node_modules/**/*"
1515
]
1616
},
17+
"pod-native": {
18+
"executor": "@nx/react-native:pod-install",
19+
"dependsOn": ["^build", "^cargo-ios-native"],
20+
"cache": true,
21+
"inputs": [
22+
"!{projectRoot}/**/*",
23+
"{workspaceRoot}/packages/ironfish-native-module/**/*",
24+
"{workspaceRoot}/node_modules/**/*"
25+
]
26+
},
1727
"ios": {
1828
"dependsOn": ["pod-sim"]
1929
},
30+
"ios-native": {
31+
"dependsOn": ["pod-sim"]
32+
},
2033
"lint": {
2134
"dependsOn": ["^build"]
2235
},

0 commit comments

Comments
 (0)