在 Android 上设置 ofxPd 示例
Setting up ofxPd example on Android
我正在尝试 运行 在 Android 设备上使用 OSX Studio 上的 Android ofxPd 示例。
首先,我可以成功编译 运行 of_v0.9.8_android_release/examples/android/androidEmptyExample Android工作室。
但我不确定如何在 androidEmptyExample 之上正确添加 ofxPd 插件。
所以我只是尝试将 ofxPd 文件夹定位到 androidEmptyExample/src 但是当我构建它时,它失败并出现错误,如下面的屏幕截图所示。
我认为它与 C Flags 有关,所以我将它们添加到 androidEmptyExample/jni/Android.mk 文件中,但它似乎没有任何效果。
如何在 Android Studio 上正确添加 C 标志?
非常感谢!
更新:我删除了 of_v0.9.8_android_release/examples/android/androidEmptyExample 中的 ofxPd 文件夹并添加了 'ofxPd' androidEmptyExample/addons.make 文件结尾。
当我构建它时,现在它总是卡在构建的中间。
编译 ofxPd/libs/libpd/pure-data/src 文件夹中的一个 C 文件时卡住。
我尝试了很多次,但一旦卡住就再也没有进步。
(有一次等了40多分钟一点进展都没有)
无论 C 标志如何,结果都是一样的。
我将不胜感激任何建议。谢谢!
感谢 OF 论坛的 Arturo,我解决了这个问题。
我可以在我的 Android 设备上成功 运行 ofxPd 示例。
谢谢!
阿图罗:
i remember having this same problem with android studio, try running
make from a console using:
make PLATFORM_OS=Android Debug
once it's built android studio shouldn't need to rebuild it and the
next time you change something it will only need to build that file
and hopefully won't get stuck
我正在尝试 运行 在 Android 设备上使用 OSX Studio 上的 Android ofxPd 示例。
首先,我可以成功编译 运行 of_v0.9.8_android_release/examples/android/androidEmptyExample Android工作室。
但我不确定如何在 androidEmptyExample 之上正确添加 ofxPd 插件。 所以我只是尝试将 ofxPd 文件夹定位到 androidEmptyExample/src 但是当我构建它时,它失败并出现错误,如下面的屏幕截图所示。
我认为它与 C Flags 有关,所以我将它们添加到 androidEmptyExample/jni/Android.mk 文件中,但它似乎没有任何效果。 如何在 Android Studio 上正确添加 C 标志? 非常感谢!
更新:我删除了 of_v0.9.8_android_release/examples/android/androidEmptyExample 中的 ofxPd 文件夹并添加了 'ofxPd' androidEmptyExample/addons.make 文件结尾。
当我构建它时,现在它总是卡在构建的中间。
编译 ofxPd/libs/libpd/pure-data/src 文件夹中的一个 C 文件时卡住。 我尝试了很多次,但一旦卡住就再也没有进步。 (有一次等了40多分钟一点进展都没有)
无论 C 标志如何,结果都是一样的。 我将不胜感激任何建议。谢谢!
感谢 OF 论坛的 Arturo,我解决了这个问题。 我可以在我的 Android 设备上成功 运行 ofxPd 示例。 谢谢!
阿图罗:
i remember having this same problem with android studio, try running make from a console using:
make PLATFORM_OS=Android Debug
once it's built android studio shouldn't need to rebuild it and the next time you change something it will only need to build that file and hopefully won't get stuck