@expo/config-types
Advanced tools
Comparing version 52.0.0-canary-20240927-ab8a962 to 52.0.0-canary-20241008-90b13ad
@@ -68,3 +68,3 @@ /** | ||
/** | ||
* Local path or remote URL to an image to use for your app's icon. We recommend that you use a 1024x1024 png file. This icon will appear on the home screen and within the Expo app. | ||
* Local path or remote URL to an image to use for your app's icon. We recommend that you use a 1024x1024 png file. This icon will appear on the home screen and within the Expo Go app. | ||
*/ | ||
@@ -339,7 +339,7 @@ icon?: string; | ||
/** | ||
* Local path or remote URL to an image to use for your app's icon on iOS. If specified, this overrides the top-level `icon` key. Use a 1024x1024 icon which follows Apple's interface guidelines for icons, including color profile and transparency. | ||
* Local path or remote URL to an image to use for your app's icon on iOS. Alternatively, an object specifying different icons for various system appearances (e.g., dark, tinted) can be provided. If specified, this overrides the top-level `icon` key. Use a 1024x1024 icon which follows Apple's interface guidelines for icons, including color profile and transparency. | ||
* | ||
* Expo will generate the other required sizes. This icon will appear on the home screen and within the Expo app. | ||
* Expo will generate the other required sizes. This icon will appear on the home screen and within the Expo Go app. | ||
*/ | ||
icon?: string; | ||
icon?: string | IOSIcons; | ||
/** | ||
@@ -522,2 +522,19 @@ * URL to your app on the Apple App Store, if you have deployed it there. This is used to link to your store page from your Expo project page if your app is public. | ||
/** | ||
* Configuration that is specific to the iOS platform icons. | ||
*/ | ||
export interface IOSIcons { | ||
/** | ||
* The icon that will appear for the app regardless of the user's current system appearance. | ||
*/ | ||
any?: string; | ||
/** | ||
* The icon that will appear for the app when the user's system appearance is dark. See Apple's [Human Interface Guidelines](https://developer.apple.com/design/human-interface-guidelines/app-icons#iOS-iPadOS) for more information. | ||
*/ | ||
dark?: string; | ||
/** | ||
* The icon that will appear for the app when the user's system appearance is tinted. See Apple's [Human Interface Guidelines](https://developer.apple.com/design/human-interface-guidelines/app-icons#iOS-iPadOS) for more information. | ||
*/ | ||
tinted?: string; | ||
} | ||
/** | ||
* Configuration that is specific to the Android platform. | ||
@@ -551,3 +568,3 @@ */ | ||
/** | ||
* Local path or remote URL to an image to use for your app's icon on Android. If specified, this overrides the top-level `icon` key. We recommend that you use a 1024x1024 png file (transparency is recommended for the Google Play Store). This icon will appear on the home screen and within the Expo app. | ||
* Local path or remote URL to an image to use for your app's icon on Android. If specified, this overrides the top-level `icon` key. We recommend that you use a 1024x1024 png file (transparency is recommended for the Google Play Store). This icon will appear on the home screen and within the Expo Go app. | ||
*/ | ||
@@ -554,0 +571,0 @@ icon?: string; |
{ | ||
"name": "@expo/config-types", | ||
"version": "52.0.0-canary-20240927-ab8a962", | ||
"version": "52.0.0-canary-20241008-90b13ad", | ||
"description": "Types for the Expo config object app.config.ts", | ||
@@ -40,3 +40,3 @@ "types": "build/ExpoConfig.d.ts", | ||
"devDependencies": { | ||
"expo-module-scripts": "3.6.0-canary-20240927-ab8a962", | ||
"expo-module-scripts": "3.6.0-canary-20241008-90b13ad", | ||
"json-schema-to-typescript": "^14.0.5", | ||
@@ -48,3 +48,3 @@ "ts-node": "^10.9.1" | ||
}, | ||
"gitHead": "ab8a962d2c3dddbda124a6bd88d24475831dae00" | ||
"gitHead": "90b13ad9d0dd3469556ac776d8b74643375b1d97" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
50287
934