如何构建ndk应用程序?

时间:2011-01-31 12:56:05

标签: android build android-ndk

您好如何构建ndk应用程序...现在我使用的是linux操作系统,我是Android应用程序的新手,请告诉我简单....

2 个答案:

答案 0 :(得分:2)

这应该有助于你:

http://www.jondev.net/articles/Using_NDK_r4_with_the_Android_SDK_in_Netbeans

向您展示如何使用NDK构建简单的“Hello World”应用程序。

答案 1 :(得分:1)

请注意,NDK不允许您构建应用程序。它只允许您构建SDK应用程序将在运行时打开的共享库对象(.so),以便执行本机代码。

而不是构建和安装应用程序的标准方法:

ant compile    # (or ant debug)
ant install

您将有一个额外的步骤:

ndk-build      # builds the .so files
ant compile    # builds the Java app and embeds the .so within the final .apk
ant install