tidev / titanium-sdk

🚀 Native iOS and Android Apps with JavaScript
https://titaniumsdk.com/
Other
2.76k stars 1.21k forks source link

iOS 18: Dark Mode Icons #14122

Open dlewis23 opened 1 month ago

dlewis23 commented 1 month ago

I have searched and made sure there are no existing issues for the issue I am filing

Description

We should add support for Dark Mode and Tinted icons on iOS 18.

Solution

Need to add support from the contents.json in AppIcon.appiconset to add support for 2 more icon styles.

{
  "images" : [
    {
      "filename" : "DefaultIcon-Marketing.png",
      "idiom" : "universal",
      "platform" : "ios",
      "size" : "1024x1024"
    },
    {
      "appearances" : [
        {
          "appearance" : "luminosity",
          "value" : "dark"
        }
      ],
      "filename" : "DefaultIcon-Dark.png",
      "idiom" : "universal",
      "platform" : "ios",
      "size" : "1024x1024"
    },
    {
      "appearances" : [
        {
          "appearance" : "luminosity",
          "value" : "tinted"
        }
      ],
      "filename" : "DefaultIcon-Tinted.png",
      "idiom" : "universal",
      "platform" : "ios",
      "size" : "1024x1024"
    }
  ],
  "info" : {
    "author" : "xcode",
    "version" : 1
  }
}

Alternatives

No response

Platforms

iOS