Reputation: 11961
I want to find a cross platform mobile development tool that support both Android and iOS. I have some CPU-intensive code in C++, and I want to use HTML5 as my GUI part. I know MoSync can provide a bridge for C++ and HTML5+JavaScript for mobile apps. But besides MoSync, are there any other tools that can integrate code in C++ and HTML+JavaScript. I need to integrate the code of C++/HTML/JavaScript and let code communicate between C++ side and JavaScript side.
Upvotes: 2
Views: 1490
Reputation: 25350
Maybe Qt can help you here. Qt is cross platform and there are even ports for Android and iPhone available.
take a look specially at those Qt-moduls:
Documentation: (abridgement)
Mobile platforms
Qt 5 will support all leading mobile operating systems. There already exists work in progress support for:
- Android
- iOS
- Windows 8 (WinRT)
- BlackBerry 10
( source: http://qt-project.org/doc/qt-5.0/qtdoc/supported-platforms.html )
Upvotes: 2