Software Archive
Read-only legacy content
17061 Discussions

[SOLVED] iOS 9 and Push Plugin notification

Adam_L_1
Beginner
1,009 Views

Hello,

after update to iOS9 Iicon from PushPlugin notification are missing. Probably new size of icons are needed.
Can you help me?

0 Kudos
1 Solution
Tony_J_
New Contributor I
1,009 Views

Try adding this line (and icon) to the additions file.  It worked for me for push notifications in ios9 (I use pushwoosh)

<icon platform="ios" src="images/icons/57x57.png" width="57" height="57" />

View solution in original post

0 Kudos
6 Replies
John_H_Intel2
Employee
1,009 Views

I am pretty sure the size icon will vary by device. Here is a list to the Apple docs. You can include the extra icons via the additions file.

https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/MobileHIG/IconMatrix.html

https://developer.apple.com/library/ios/qa/qa1686/_index.html

0 Kudos
Adam_L_1
Beginner
1,009 Views

Hello,

in additions file I add missing spotlight files 40x40 and 80x80 and now it's looks like that:

<preference name="DisallowOverscroll" value="true"/>
<!-- +iOS --><icon platform="ios" src="40x40.png" width="40" height="40" />
<!-- +iOS --><icon platform="ios" src="80x80.png" width="80" height="80" />
<!-- +iOS --><icon platform="ios" src="58x58.png" width="58" height="58" />
<!-- +iOS --><icon platform="ios" src="29x29.png" width="29" height="29" />
<!-- +iOS --><icon platform="ios" src="87x87.png" width="87" height="87" />

And push notification icon still not working.
For example settings icon (29x29) works fine.

Bellow list of my icons.

intelxdkdd.png



 

0 Kudos
John_H_Intel2
Employee
1,009 Views

After checking with one of the build engineers I found out that the build system does not yet support iOS 9 because builds are based off of CLI 5.1.1 or 4.1.2. 

We will need to update to a newer CLI that does support iOS 9. I can not provide a date on when that will be.

0 Kudos
Tony_J_
New Contributor I
1,010 Views

Try adding this line (and icon) to the additions file.  It worked for me for push notifications in ios9 (I use pushwoosh)

<icon platform="ios" src="images/icons/57x57.png" width="57" height="57" />

0 Kudos
Adam_L_1
Beginner
1,009 Views

@Tony Thank you. It works.

@John So I looking forward new version.

0 Kudos
Ian_I_
Beginner
1,009 Views

I also have the same problem and this fixed it. Thanks @Tony J.!

0 Kudos
Reply