Skip to content

Commit

Permalink
sdk 52 tinted icons
Browse files Browse the repository at this point in the history
  • Loading branch information
denniske committed Nov 12, 2024
1 parent 38c5d56 commit 50cfe50
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
Binary file added app/assets/icon-tinted.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 9 additions & 3 deletions app2.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { ExpoConfig } from '@expo/config-types';

// Experimental dark splash screen: https://expo.canny.io/feature-requests/p/dark-mode-splash-screen
const splash = {
"image": "./app/assets/splash.png",
Expand Down Expand Up @@ -153,14 +155,18 @@ export default {
"backgroundColor": "#fbebd3"
},
"package": "com.aoe2companion",
"versionCode": runtimeVersionCode,
"versionCode": runtimeVersionCode as any as number,
"permissions": [],
"googleServicesFile": "./google-services2.json",
"splash": splash,
},
"ios": {
"userInterfaceStyle": "automatic",
"icon": "./app/assets/icon-adaptive-no-alpha.png",
"icon": {
"light": "./app/assets/icon-adaptive-no-alpha.png",
"dark": "./app/assets/icon-adaptive.png",
"tinted": "./app/assets/icon-tinted.png"
},
"bundleIdentifier": "com.aoe2companion",
"buildNumber": runtimeVersion,
"supportsTablet": false,
Expand All @@ -181,5 +187,5 @@ export default {
"appleTeamId": "HAFGZBHF9M",
"splash": splash,
},
}
} as ExpoConfig
};
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@expo/config-types": "^52.0.0",
"@expo/metro-config": "~0.19.0-preview",
"@nrwl/cli": "14.8.2",
"@nrwl/express": "14.8.2",
Expand Down
1 change: 1 addition & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7004,6 +7004,7 @@ __metadata:
"@babel/preset-typescript": ^7.10.4
"@eva-design/eva": ^2.2.0
"@expo-google-fonts/roboto": ^0.1.0
"@expo/config-types": ^52.0.0
"@expo/metro-config": ~0.19.0-preview
"@fortawesome/fontawesome-svg-core": ^6.5.2
"@fortawesome/react-native-fontawesome": ^0.3.1
Expand Down

0 comments on commit 50cfe50

Please sign in to comment.