[TIMOB-18528] iOS: Unnecessary icon appicon-60.png incorrectly included in bundle
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Low |
Status | Open |
Resolution | Unresolved |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | iOS |
Labels | cb-tooling |
Reporter | Tim Poulsen |
Assignee | Unknown |
Created | 2015-02-05T20:25:41.000+0000 |
Updated | 2020-01-30T10:23:20.000+0000 |
Description
If a file named appicon-60.png is included in the Resources, Resource/iphone, Resources/ios, app/assets, or app/assets/iphone folders, it will be included in the app bundle. However, this is not a supported or necessary icon size. Following the naming logic of the other icons, this file would correspond to a non-retina iPhone 4 form-factor device running iOS 8. No such device exists.
Logic to be updated is in iphone/cli/commands/_build.js around line 2030 (following
Array.isArray(plist.CFBundleIconFiles) || (plist.CFBundleIconFiles = []);
statement.
No comments