开发者

Porting C++ Project to Android

开发者 https://www.devze.com 2023-02-06 21:04 出处:网络
I have a big C++ application developed on windows,I need to port it to Android to run it as galaxy tab application.

I have a big C++ application developed on windows,I need to port it to Android to run it as galaxy tab application.

I read many tutorials about NDK but it seems difficult to embed C++ files into Android.

Can I develop "DLL" using NDK? and invoke DLL from DLL?

any help开发者_StackOverflow would be highly appreciated .


Starting with 2.3, you can write android-applications completely in C++. Prior to 2.3, you had to create a shared object (the Linux equivalent of a DLL) using JNI, and call this from Java.

0

精彩评论

暂无评论...
验证码 换一张
取 消