Software Archive
Read-only legacy content
Comunicados
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
17060 Discussões

[SOLVED] iOS 9 and Push Plugin notification

Adam_L_1
Principiante
1.498 Visualizações

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 Solução
Tony_J_
Novo colaborador I
1.498 Visualizações

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" />

Ver solução na publicação original

6 Respostas
John_H_Intel2
Funcionário
1.498 Visualizações

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

Adam_L_1
Principiante
1.498 Visualizações

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



 

John_H_Intel2
Funcionário
1.498 Visualizações

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.

Tony_J_
Novo colaborador I
1.499 Visualizações

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" />

Adam_L_1
Principiante
1.498 Visualizações

@Tony Thank you. It works.

@John So I looking forward new version.

Ian_I_
Principiante
1.498 Visualizações

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

Responder