Dear Wiki user, You have subscribed to a wiki page or wiki category on "Cordova Wiki" for change notification.
The "config/cordova.xml" page has been changed by jbondc: https://wiki.apache.org/cordova/config/cordova.xml?action=diff&rev1=12&rev2=13 === Preference for XML & JSON both supported as user config === * Jonathan + === Icons === + + An alternative to 'grouping' <icons> would be to reference images: + {{{ + <icons> + <img src="path/app.png" width="58" height="58" /> + <img src="path/app.png" width="96" height="96" /> + </icons> + <splash> + <img src="path/splash.png" width="1024" height="768" /> + </splash> + }}} + + Becomes: + {{{ + <img src="path/app.png" ref="icons" width="58" height="58" /> + <img src="path/app.png" ref="icons" width="96" height="96" /> + + <img src="path/splash.png" ref="splash" width="1024" height="768" /> + + + <img src="path/splash.png" ref="3d-something" width="1024" height="768" /> + + ... + }}} +
