Missing icon - How to add icons not available in the Xcode appicon template?
I'm working with Xcode 10.0 and I cannot update to Xcode 10.1 for various reasons. I need to include WatchApp icons required to submit the App (50x50 and 108x108) but these sets are not available in the template for 10.0, I suppose they have been added with 10.1. How can I include this icons manually even if there are no slots marked as 50x50 and 108x108 in my Xcode version?
I'm trying to add the icons directly into the icon set folder, the icons appear on Xcode but I see this warning...
Warning: The app icon set "AppIcon" has 2 unassigned children
ios xcode
add a comment |
I'm working with Xcode 10.0 and I cannot update to Xcode 10.1 for various reasons. I need to include WatchApp icons required to submit the App (50x50 and 108x108) but these sets are not available in the template for 10.0, I suppose they have been added with 10.1. How can I include this icons manually even if there are no slots marked as 50x50 and 108x108 in my Xcode version?
I'm trying to add the icons directly into the icon set folder, the icons appear on Xcode but I see this warning...
Warning: The app icon set "AppIcon" has 2 unassigned children
ios xcode
add a comment |
I'm working with Xcode 10.0 and I cannot update to Xcode 10.1 for various reasons. I need to include WatchApp icons required to submit the App (50x50 and 108x108) but these sets are not available in the template for 10.0, I suppose they have been added with 10.1. How can I include this icons manually even if there are no slots marked as 50x50 and 108x108 in my Xcode version?
I'm trying to add the icons directly into the icon set folder, the icons appear on Xcode but I see this warning...
Warning: The app icon set "AppIcon" has 2 unassigned children
ios xcode
I'm working with Xcode 10.0 and I cannot update to Xcode 10.1 for various reasons. I need to include WatchApp icons required to submit the App (50x50 and 108x108) but these sets are not available in the template for 10.0, I suppose they have been added with 10.1. How can I include this icons manually even if there are no slots marked as 50x50 and 108x108 in my Xcode version?
I'm trying to add the icons directly into the icon set folder, the icons appear on Xcode but I see this warning...
Warning: The app icon set "AppIcon" has 2 unassigned children
ios xcode
ios xcode
edited Nov 14 '18 at 16:32
MatterGoal
asked Nov 14 '18 at 16:24
MatterGoalMatterGoal
6,1781679156
6,1781679156
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You could try manually updating the Contents.json file.
Here's what mine looks like with all icons, you can use it as a base to add the missing sections in yours:
"images" : [
"size" : "24x24",
"idiom" : "watch",
"filename" : "Icon-24@2x.png",
"scale" : "2x",
"role" : "notificationCenter",
"subtype" : "38mm"
,
"size" : "27.5x27.5",
"idiom" : "watch",
"filename" : "Icon-27.png",
"scale" : "2x",
"role" : "notificationCenter",
"subtype" : "42mm"
,
"size" : "29x29",
"idiom" : "watch",
"filename" : "Icon-29@2x.png",
"role" : "companionSettings",
"scale" : "2x"
,
"size" : "29x29",
"idiom" : "watch",
"filename" : "Icon-29@3x.png",
"role" : "companionSettings",
"scale" : "3x"
,
"size" : "40x40",
"idiom" : "watch",
"filename" : "Icon-40@2x.png",
"scale" : "2x",
"role" : "appLauncher",
"subtype" : "38mm"
,
"size" : "44x44",
"idiom" : "watch",
"filename" : "Icon-44@2x.png",
"scale" : "2x",
"role" : "appLauncher",
"subtype" : "40mm"
,
"size" : "50x50",
"idiom" : "watch",
"filename" : "Icon-50@2x.png",
"scale" : "2x",
"role" : "appLauncher",
"subtype" : "44mm"
,
"size" : "86x86",
"idiom" : "watch",
"filename" : "Icon-86@2x.png",
"scale" : "2x",
"role" : "quickLook",
"subtype" : "38mm"
,
"size" : "98x98",
"idiom" : "watch",
"filename" : "Icon-98@2x.png",
"scale" : "2x",
"role" : "quickLook",
"subtype" : "42mm"
,
"size" : "108x108",
"idiom" : "watch",
"filename" : "Icon-108@2x.png",
"scale" : "2x",
"role" : "quickLook",
"subtype" : "44mm"
,
"size" : "1024x1024",
"idiom" : "watch-marketing",
"filename" : "Icon-1024.png",
"scale" : "1x"
],
"info" :
"version" : 1,
"author" : "xcode"
By any chance do you know what should I write for the "Long Look 44mm" and what for the "Short Look 44mm" watch icons?
– MatterGoal
Nov 14 '18 at 17:25
longLook did the trick.
– MatterGoal
Nov 14 '18 at 18:50
Hi @MatterGoal, I'm running into the same issue. Would you please post the complete JSON blocks that got this working for you?
– user2623825
Jan 2 at 22:42
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53304661%2fmissing-icon-how-to-add-icons-not-available-in-the-xcode-appicon-template%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You could try manually updating the Contents.json file.
Here's what mine looks like with all icons, you can use it as a base to add the missing sections in yours:
"images" : [
"size" : "24x24",
"idiom" : "watch",
"filename" : "Icon-24@2x.png",
"scale" : "2x",
"role" : "notificationCenter",
"subtype" : "38mm"
,
"size" : "27.5x27.5",
"idiom" : "watch",
"filename" : "Icon-27.png",
"scale" : "2x",
"role" : "notificationCenter",
"subtype" : "42mm"
,
"size" : "29x29",
"idiom" : "watch",
"filename" : "Icon-29@2x.png",
"role" : "companionSettings",
"scale" : "2x"
,
"size" : "29x29",
"idiom" : "watch",
"filename" : "Icon-29@3x.png",
"role" : "companionSettings",
"scale" : "3x"
,
"size" : "40x40",
"idiom" : "watch",
"filename" : "Icon-40@2x.png",
"scale" : "2x",
"role" : "appLauncher",
"subtype" : "38mm"
,
"size" : "44x44",
"idiom" : "watch",
"filename" : "Icon-44@2x.png",
"scale" : "2x",
"role" : "appLauncher",
"subtype" : "40mm"
,
"size" : "50x50",
"idiom" : "watch",
"filename" : "Icon-50@2x.png",
"scale" : "2x",
"role" : "appLauncher",
"subtype" : "44mm"
,
"size" : "86x86",
"idiom" : "watch",
"filename" : "Icon-86@2x.png",
"scale" : "2x",
"role" : "quickLook",
"subtype" : "38mm"
,
"size" : "98x98",
"idiom" : "watch",
"filename" : "Icon-98@2x.png",
"scale" : "2x",
"role" : "quickLook",
"subtype" : "42mm"
,
"size" : "108x108",
"idiom" : "watch",
"filename" : "Icon-108@2x.png",
"scale" : "2x",
"role" : "quickLook",
"subtype" : "44mm"
,
"size" : "1024x1024",
"idiom" : "watch-marketing",
"filename" : "Icon-1024.png",
"scale" : "1x"
],
"info" :
"version" : 1,
"author" : "xcode"
By any chance do you know what should I write for the "Long Look 44mm" and what for the "Short Look 44mm" watch icons?
– MatterGoal
Nov 14 '18 at 17:25
longLook did the trick.
– MatterGoal
Nov 14 '18 at 18:50
Hi @MatterGoal, I'm running into the same issue. Would you please post the complete JSON blocks that got this working for you?
– user2623825
Jan 2 at 22:42
add a comment |
You could try manually updating the Contents.json file.
Here's what mine looks like with all icons, you can use it as a base to add the missing sections in yours:
"images" : [
"size" : "24x24",
"idiom" : "watch",
"filename" : "Icon-24@2x.png",
"scale" : "2x",
"role" : "notificationCenter",
"subtype" : "38mm"
,
"size" : "27.5x27.5",
"idiom" : "watch",
"filename" : "Icon-27.png",
"scale" : "2x",
"role" : "notificationCenter",
"subtype" : "42mm"
,
"size" : "29x29",
"idiom" : "watch",
"filename" : "Icon-29@2x.png",
"role" : "companionSettings",
"scale" : "2x"
,
"size" : "29x29",
"idiom" : "watch",
"filename" : "Icon-29@3x.png",
"role" : "companionSettings",
"scale" : "3x"
,
"size" : "40x40",
"idiom" : "watch",
"filename" : "Icon-40@2x.png",
"scale" : "2x",
"role" : "appLauncher",
"subtype" : "38mm"
,
"size" : "44x44",
"idiom" : "watch",
"filename" : "Icon-44@2x.png",
"scale" : "2x",
"role" : "appLauncher",
"subtype" : "40mm"
,
"size" : "50x50",
"idiom" : "watch",
"filename" : "Icon-50@2x.png",
"scale" : "2x",
"role" : "appLauncher",
"subtype" : "44mm"
,
"size" : "86x86",
"idiom" : "watch",
"filename" : "Icon-86@2x.png",
"scale" : "2x",
"role" : "quickLook",
"subtype" : "38mm"
,
"size" : "98x98",
"idiom" : "watch",
"filename" : "Icon-98@2x.png",
"scale" : "2x",
"role" : "quickLook",
"subtype" : "42mm"
,
"size" : "108x108",
"idiom" : "watch",
"filename" : "Icon-108@2x.png",
"scale" : "2x",
"role" : "quickLook",
"subtype" : "44mm"
,
"size" : "1024x1024",
"idiom" : "watch-marketing",
"filename" : "Icon-1024.png",
"scale" : "1x"
],
"info" :
"version" : 1,
"author" : "xcode"
By any chance do you know what should I write for the "Long Look 44mm" and what for the "Short Look 44mm" watch icons?
– MatterGoal
Nov 14 '18 at 17:25
longLook did the trick.
– MatterGoal
Nov 14 '18 at 18:50
Hi @MatterGoal, I'm running into the same issue. Would you please post the complete JSON blocks that got this working for you?
– user2623825
Jan 2 at 22:42
add a comment |
You could try manually updating the Contents.json file.
Here's what mine looks like with all icons, you can use it as a base to add the missing sections in yours:
"images" : [
"size" : "24x24",
"idiom" : "watch",
"filename" : "Icon-24@2x.png",
"scale" : "2x",
"role" : "notificationCenter",
"subtype" : "38mm"
,
"size" : "27.5x27.5",
"idiom" : "watch",
"filename" : "Icon-27.png",
"scale" : "2x",
"role" : "notificationCenter",
"subtype" : "42mm"
,
"size" : "29x29",
"idiom" : "watch",
"filename" : "Icon-29@2x.png",
"role" : "companionSettings",
"scale" : "2x"
,
"size" : "29x29",
"idiom" : "watch",
"filename" : "Icon-29@3x.png",
"role" : "companionSettings",
"scale" : "3x"
,
"size" : "40x40",
"idiom" : "watch",
"filename" : "Icon-40@2x.png",
"scale" : "2x",
"role" : "appLauncher",
"subtype" : "38mm"
,
"size" : "44x44",
"idiom" : "watch",
"filename" : "Icon-44@2x.png",
"scale" : "2x",
"role" : "appLauncher",
"subtype" : "40mm"
,
"size" : "50x50",
"idiom" : "watch",
"filename" : "Icon-50@2x.png",
"scale" : "2x",
"role" : "appLauncher",
"subtype" : "44mm"
,
"size" : "86x86",
"idiom" : "watch",
"filename" : "Icon-86@2x.png",
"scale" : "2x",
"role" : "quickLook",
"subtype" : "38mm"
,
"size" : "98x98",
"idiom" : "watch",
"filename" : "Icon-98@2x.png",
"scale" : "2x",
"role" : "quickLook",
"subtype" : "42mm"
,
"size" : "108x108",
"idiom" : "watch",
"filename" : "Icon-108@2x.png",
"scale" : "2x",
"role" : "quickLook",
"subtype" : "44mm"
,
"size" : "1024x1024",
"idiom" : "watch-marketing",
"filename" : "Icon-1024.png",
"scale" : "1x"
],
"info" :
"version" : 1,
"author" : "xcode"
You could try manually updating the Contents.json file.
Here's what mine looks like with all icons, you can use it as a base to add the missing sections in yours:
"images" : [
"size" : "24x24",
"idiom" : "watch",
"filename" : "Icon-24@2x.png",
"scale" : "2x",
"role" : "notificationCenter",
"subtype" : "38mm"
,
"size" : "27.5x27.5",
"idiom" : "watch",
"filename" : "Icon-27.png",
"scale" : "2x",
"role" : "notificationCenter",
"subtype" : "42mm"
,
"size" : "29x29",
"idiom" : "watch",
"filename" : "Icon-29@2x.png",
"role" : "companionSettings",
"scale" : "2x"
,
"size" : "29x29",
"idiom" : "watch",
"filename" : "Icon-29@3x.png",
"role" : "companionSettings",
"scale" : "3x"
,
"size" : "40x40",
"idiom" : "watch",
"filename" : "Icon-40@2x.png",
"scale" : "2x",
"role" : "appLauncher",
"subtype" : "38mm"
,
"size" : "44x44",
"idiom" : "watch",
"filename" : "Icon-44@2x.png",
"scale" : "2x",
"role" : "appLauncher",
"subtype" : "40mm"
,
"size" : "50x50",
"idiom" : "watch",
"filename" : "Icon-50@2x.png",
"scale" : "2x",
"role" : "appLauncher",
"subtype" : "44mm"
,
"size" : "86x86",
"idiom" : "watch",
"filename" : "Icon-86@2x.png",
"scale" : "2x",
"role" : "quickLook",
"subtype" : "38mm"
,
"size" : "98x98",
"idiom" : "watch",
"filename" : "Icon-98@2x.png",
"scale" : "2x",
"role" : "quickLook",
"subtype" : "42mm"
,
"size" : "108x108",
"idiom" : "watch",
"filename" : "Icon-108@2x.png",
"scale" : "2x",
"role" : "quickLook",
"subtype" : "44mm"
,
"size" : "1024x1024",
"idiom" : "watch-marketing",
"filename" : "Icon-1024.png",
"scale" : "1x"
],
"info" :
"version" : 1,
"author" : "xcode"
answered Nov 14 '18 at 16:48
EmilioPelaezEmilioPelaez
9,08832436
9,08832436
By any chance do you know what should I write for the "Long Look 44mm" and what for the "Short Look 44mm" watch icons?
– MatterGoal
Nov 14 '18 at 17:25
longLook did the trick.
– MatterGoal
Nov 14 '18 at 18:50
Hi @MatterGoal, I'm running into the same issue. Would you please post the complete JSON blocks that got this working for you?
– user2623825
Jan 2 at 22:42
add a comment |
By any chance do you know what should I write for the "Long Look 44mm" and what for the "Short Look 44mm" watch icons?
– MatterGoal
Nov 14 '18 at 17:25
longLook did the trick.
– MatterGoal
Nov 14 '18 at 18:50
Hi @MatterGoal, I'm running into the same issue. Would you please post the complete JSON blocks that got this working for you?
– user2623825
Jan 2 at 22:42
By any chance do you know what should I write for the "Long Look 44mm" and what for the "Short Look 44mm" watch icons?
– MatterGoal
Nov 14 '18 at 17:25
By any chance do you know what should I write for the "Long Look 44mm" and what for the "Short Look 44mm" watch icons?
– MatterGoal
Nov 14 '18 at 17:25
longLook did the trick.
– MatterGoal
Nov 14 '18 at 18:50
longLook did the trick.
– MatterGoal
Nov 14 '18 at 18:50
Hi @MatterGoal, I'm running into the same issue. Would you please post the complete JSON blocks that got this working for you?
– user2623825
Jan 2 at 22:42
Hi @MatterGoal, I'm running into the same issue. Would you please post the complete JSON blocks that got this working for you?
– user2623825
Jan 2 at 22:42
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53304661%2fmissing-icon-how-to-add-icons-not-available-in-the-xcode-appicon-template%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown