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.xml
file. 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
Post a Comment