Host another Application inside Titanium Application

You must Login before you can answer or comment on any questions.

Hi, I am using Titanium 2.0 and developing an application for iOS. I want to host Kiwiviewer( http://www.kiwiviewer.org/) from Kitware Inc. in my application to show 3D graphical object. Kiwiviewer provides application that can be installed on iOS , but is there a way to host this app inside Titanium application?

Thanks, Puneet

1 Answer

You cannot host an app inside of another app, unless the inner app is a webapp. However, Kiwiviewer is open source, so you can take their libraries and create custom modules for them and use them inside your titanium applications. See the Module Development Guides for more information on that.

— answered 8 months ago by Anthony Decena
answer permalink
1 Comment
  • I started creating a module as suggested and used VES static librarues to create the module. It got build properly on XCode and build.py. Next I tried to run through Titanium run command and it fails with System error 65. I have done search for the error on this forum and as per suggestion I tried modifying the module.xconfig file with all suggestions posted. But It doesn't work and build.log always complains about missing symbols.

    Some of the suggestions I tried are:-

    OTHER_LDFLAGS=$(inherited) -framework <lib Name> OTHER_LDFLAGS=$(inherited) -F "<Path to Lib directory> <lib names> OTHER_LDFLAGS=$(inherited) <library names with and without .a extention, name appended with l>

    No Sucess in all cases. Please let me know how to add static library in module.xconfig?

    — commented 8 months ago by Puneet Batra

Your Answer

Think you can help? Login to answer this question!