Aviarc add icon to idevice home screen -


i using aviarc 3.6.1 , want use specific icon when user adds app idevice home screen safari. can create apple-touch-icon.png not sure place in app used.

i have tried putting in themes\screen doesn't seem work.

has else managed working app?.

thanks, tim

another solution (tested on iphone 5s ios 7.0.3)

<action:behaviors>     <action:when system-event="onstartupcomplete">         <action:script>         <![cdata[              var link = document.createelement('link');             link.rel= "apple-touch-icon";             link.href= "www/images/app_logo.png";             document.getelementsbytagname('head')[0].appendchild(link);         ]]>         </action:script>         </action:when> </action:behaviors> 

Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -