how to include third framework on robovm ios? -


we developing game on robovm ios, easy include system framework in robovm.xml.

how include third framework on robovm ios? information appreciated!!

specify path of framework using <frameworkpaths> element in robovm.xmlfile. below example googleplus framework. assumes google-plus-ios-sdk-1.4.1 folder located in same folder robovm.xml file.

<config>   ...   <frameworkpaths>     <!-- relative path folder containing          googleplus.framework folder -->     <path>google-plus-ios-sdk-1.4.1</path>   </frameworkpaths>   <frameworks>     <framework>googleplus</framework>   </frameworks>   ... </config> 

also note may have add <resource> robovm.xml file if framework includes image files , other resources have included in application.


Comments

Popular posts from this blog

c# - How to get the current UAC mode -

postgresql - Lazarus + Postgres: incomplete startup packet -

javascript - Ajax jqXHR.status==0 fix error -