3

I'm starting developing to Bada platform. But C++ isn't my favorite language. So, is there any way to run Python on Bada?

Update: For Android there is a scpripting layer (SL4A), and it's make possible to quickly prototype applications for android on the device itself using high level scripting languages. Is there nothing like that for Bada?

Thanks.

Diego Guimaraes
  • 415
  • 3
  • 12
  • Meego seems your better bet with QT bindings http://wiki.meego.com/Python . I am waiting for a distro that works on the "Tab" format (like iPad) – Jesvin Jose Sep 23 '11 at 13:04
  • But Meego isn't another operating system? how can an application developed for Meego can run on Bada platform? – Diego Guimaraes Sep 23 '11 at 15:27

2 Answers2

1

Is it possible to use Python on Bada ?

In simple words No.

Applications must be written originally in C/C++/Objective-C . No third-party APIs, development tools or “code translators (e.g. from Python to C++) are allowed.

You can’t even compile very classic library such as OpenSSL or libCurl. The support of the STL is not complete

The Bada platform APIs are a lot more closed than Apple’s ones.

codersofthedark
  • 9,183
  • 8
  • 45
  • 70
0

You can try with boost::python, but Im not sure if it will work in a proper way.

Yester
  • 1
  • This doesn't really attempt to answer the question and should probably be a comment. – Ben Oct 26 '12 at 12:43