rashadkm
rashadkm

Reputation: 11

porting a library to Android; beginner

I am a newbie in android development but having plans to become an active developer I had a c++/Java library called Wt. I need to install this library on android. http://www.webtoolkit.eu/wt

Do I need to port the source code of library?

If yes please point to me a good resource to start with.

Expecting a good helping hand from this community

Upvotes: 1

Views: 465

Answers (1)

Stéphane
Stéphane

Reputation: 6905

It is possible to use native C/C++ code in Android applications, using the Android NDK (Native Development Kit)

And it is apparently possible to compile wt for Android, so hopefully not much porting to do! See http://redmine.emweb.be/projects/wt/wiki/Installing_Wt_on_Android

Upvotes: 2

Related Questions