WxAndroid

From WxWiki
Jump to navigation Jump to search

wxAndroid

This is a page with information that could be useful for writing wxAndroid port. The port itself doesn't exist yet, we can only compile "base" library under Android right now.

Java/C++ interoperability

The main problem is that native Android GUI API is in Java and we need some way to call it from C++. There are some existing projects which could help with that:

  • CLE is a project for wrapping Android Java API to make it usable from other languages, see the example of its use in this article.
  • cppjvm
  • JACE
  • JCC

Other Design Questions

A list of some things that risk being problematic:

  • How to map Android activity lifecycle to the usual wx/C++ program structure?