Android 2.3 插件开发

发布于 2024-10-13 07:29:42 字数 468 浏览 2 评论 0原文

我是 Android 新手,使用 Android 2.3 。 我正在尝试构建的源代码中有示例浏览器插件 但它却无法这样做。

要编译插件[在 README.txt 中]

  1. 运行“make SampleBrowserPlugin”(编译 libsampleplugin.so 和 构建 apk)
  2. 上一个命令生成一个 apk 文件,因此记录其位置。

    使用上述步骤我无法构建它。

    我尝试过以下操作:-

    我想先在 JNI 文件夹中构建代码以获得 插件“.so”,以便在获取“.so”后构建项目 使用 eclipse 的 apk 。
    我尝试使用 NDK build 在 JNI 文件夹中构建代码。代码 没有得到构建,它给出了“未定义的引用” JNIHelp.h 中的 JNIRegisterNativeMethod "

    谁能告诉我如何构建示例插件并安装它 在模拟器上。

I am new to Android and using Android 2.3 .
There is sample Browser plugin in the source code I am trying to build
it but unable to do so.

To compile plugin [ In README.txt ]

  1. run "make SampleBrowserPlugin" (compiles libsampleplugin.so and
    builds the apk)
  2. the previous command produces an apk file so record its location.

    Using the above steps I am unable to build it.

    I have tried the following things :-


    I thought to build the code in JNI folder first so as to get the
    plugin ".so" so that after getting the ".so" would build the project
    apk using the eclipse .

    I tried building the code in the JNI folder using NDK build.The code
    was not geting build it was giving "undefined reference to
    JNIRegisterNativeMethod in JNIHelp.h "

    Can anyone tell me how to build the Sample plugin and install it
    on Emulator.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你与昨日 2024-10-20 07:29:42

您需要从源安装的根目录(在 Linux 计算机上)“make SampleBrowserPlugin”。也就是说,包含“bionic”、“build”、“dalvik”等作为子目录的同一目录。

You need to "make SampleBrowserPlugin" from the root of your source installation (on a Linux machine). That is, the same directory that contains "bionic", "build", "dalvik", etc. as child directories.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文