-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: only generate single 1024x1024 iOS icon
- Loading branch information
1 parent
136470d
commit 3952730
Showing
9 changed files
with
31 additions
and
344 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,17 +4,16 @@ import { AssetKind, Format, IosIdiom, Orientation, Platform, Theme } from '../.. | |
/** | ||
* 1024px Icon | ||
* | ||
* - App Store | ||
* - iOS 1024 icon | ||
*/ | ||
export const IOS_1024_ICON: IosOutputAssetTemplate = { | ||
platform: Platform.Ios, | ||
idiom: IosIdiom.iOSMarketing, | ||
idiom: IosIdiom.Universal, | ||
kind: AssetKind.Icon, | ||
name: '[email protected]', | ||
format: Format.Png, | ||
width: 1024, | ||
height: 1024, | ||
scale: 1, | ||
}; | ||
|
||
export const IOS_1X_UNIVERSAL_ANYANY_SPLASH: IosOutputAssetTemplateSplash = { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
108 changes: 3 additions & 105 deletions
108
test/fixtures/app-logo-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,112 +1,10 @@ | ||
{ | ||
"images": [ | ||
{ | ||
"size": "20x20", | ||
"idiom": "iphone", | ||
"filename": "[email protected]", | ||
"scale": "2x" | ||
}, | ||
{ | ||
"size": "20x20", | ||
"idiom": "iphone", | ||
"filename": "[email protected]", | ||
"scale": "3x" | ||
}, | ||
{ | ||
"size": "29x29", | ||
"idiom": "iphone", | ||
"filename": "[email protected]", | ||
"scale": "2x" | ||
}, | ||
{ | ||
"size": "29x29", | ||
"idiom": "iphone", | ||
"filename": "[email protected]", | ||
"scale": "3x" | ||
}, | ||
{ | ||
"size": "40x40", | ||
"idiom": "iphone", | ||
"filename": "[email protected]", | ||
"scale": "2x" | ||
}, | ||
{ | ||
"size": "40x40", | ||
"idiom": "iphone", | ||
"filename": "[email protected]", | ||
"scale": "3x" | ||
}, | ||
{ | ||
"size": "60x60", | ||
"idiom": "iphone", | ||
"filename": "[email protected]", | ||
"scale": "2x" | ||
}, | ||
{ | ||
"size": "60x60", | ||
"idiom": "iphone", | ||
"filename": "[email protected]", | ||
"scale": "3x" | ||
}, | ||
{ | ||
"size": "20x20", | ||
"idiom": "ipad", | ||
"filename": "[email protected]", | ||
"scale": "1x" | ||
}, | ||
{ | ||
"size": "20x20", | ||
"idiom": "ipad", | ||
"filename": "[email protected]", | ||
"scale": "2x" | ||
}, | ||
{ | ||
"size": "29x29", | ||
"idiom": "ipad", | ||
"filename": "[email protected]", | ||
"scale": "1x" | ||
}, | ||
{ | ||
"size": "29x29", | ||
"idiom": "ipad", | ||
"filename": "[email protected]", | ||
"scale": "2x" | ||
}, | ||
{ | ||
"size": "40x40", | ||
"idiom": "ipad", | ||
"filename": "[email protected]", | ||
"scale": "1x" | ||
}, | ||
{ | ||
"size": "40x40", | ||
"idiom": "ipad", | ||
"filename": "[email protected]", | ||
"scale": "2x" | ||
}, | ||
{ | ||
"size": "76x76", | ||
"idiom": "ipad", | ||
"filename": "[email protected]", | ||
"scale": "1x" | ||
}, | ||
{ | ||
"size": "76x76", | ||
"idiom": "ipad", | ||
"filename": "[email protected]", | ||
"scale": "2x" | ||
}, | ||
{ | ||
"size": "83.5x83.5", | ||
"idiom": "ipad", | ||
"filename": "[email protected]", | ||
"scale": "2x" | ||
}, | ||
{ | ||
"size": "1024x1024", | ||
"idiom": "ios-marketing", | ||
"filename": "[email protected]", | ||
"scale": "1x" | ||
"idiom": "universal", | ||
"platform": "ios", | ||
"size": "1024x1024" | ||
} | ||
], | ||
"info": { | ||
|
Oops, something went wrong.