- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试让 Android Studio 成为我用于 java 和 c/c++ 代码的主要开发 IDE。我希望能够调试 native 代码。
在这种情况下,我尝试将 ARToolkit5 用作库。
由于 ARToolkit5 中的一些示例,我有这个构建文件。
我有这个 Android.mk
文件
MY_LOCAL_PATH := $(call my-dir)
LOCAL_PATH := $(MY_LOCAL_PATH)
# Pull ARToolKit into the build
include $(CLEAR_VARS)
ARTOOLKIT_DIR := $(MY_LOCAL_PATH)/../../../../../artoolkit5/android
ARTOOLKIT_LIBDIR := $(call host-path, $(ARTOOLKIT_DIR)/obj/local/$(TARGET_ARCH_ABI))
define add_artoolkit_module
include $(CLEAR_VARS)
LOCAL_MODULE:=$1
LOCAL_SRC_FILES:=lib$1.a
include $(PREBUILT_STATIC_LIBRARY)
endef
ARTOOLKIT_LIBS := ar2 kpm util eden argsub_es armulti ar aricp jpeg arvideo
LOCAL_PATH := $(ARTOOLKIT_LIBDIR)
$(foreach module,$(ARTOOLKIT_LIBS),$(eval $(call add_artoolkit_module,$(module))))
LOCAL_PATH := $(MY_LOCAL_PATH)
# Android arvideo depends on CURL.
CURL_DIR := $(ARTOOLKIT_DIR)/jni/curl
CURL_LIBDIR := $(call host-path, $(CURL_DIR)/libs/$(TARGET_ARCH_ABI))
define add_curl_module
include $(CLEAR_VARS)
LOCAL_MODULE:=$1
#LOCAL_SRC_FILES:=lib$1.so
#include $(PREBUILT_SHARED_LIBRARY)
LOCAL_SRC_FILES:=lib$1.a
include $(PREBUILT_STATIC_LIBRARY)
endef
#CURL_LIBS := curl ssl crypto
CURL_LIBS := curl
LOCAL_PATH := $(CURL_LIBDIR)
$(foreach module,$(CURL_LIBS),$(eval $(call add_curl_module,$(module))))
LOCAL_PATH := $(MY_LOCAL_PATH)
include $(CLEAR_VARS)
# ARToolKit libs use lots of floating point, so don't compile in thumb mode.
LOCAL_ARM_MODE := arm
LOCAL_PATH := $(MY_LOCAL_PATH)
LOCAL_MODULE := ndkDebugModule
LOCAL_SRC_FILES := nftSimple.cpp ARMarkerNFT.c trackingSub.c
# Make sure DEBUG is defined for debug builds. (NDK already defines NDEBUG for release builds.)
ifeq ($(APP_OPTIM),debug)
LOCAL_CPPFLAGS += -DDEBUG
endif
LOCAL_C_INCLUDES += $(ARTOOLKIT_DIR)/../include/android $(ARTOOLKIT_DIR)/../include
LOCAL_LDLIBS += -llog -lGLESv1_CM -lz
LOCAL_WHOLE_STATIC_LIBRARIES += ar
LOCAL_STATIC_LIBRARIES += ar2 kpm util eden argsub_es armulti aricp jpeg arvideo cpufeatures
#LOCAL_SHARED_LIBRARIES += $(CURL_LIBS)
LOCAL_STATIC_LIBRARIES += $(CURL_LIBS)
include $(BUILD_SHARED_LIBRARY)
$(call import-module,android/cpufeatures)
此版本运行正常。现在我正在尝试将其转换为 android 实验性 gradle 文件以便能够对其进行调试。好吧,现在我处于这种状态:
apply plugin: 'com.android.model.application'
model {
android {
compileSdkVersion = 23
buildToolsVersion = "23.0.3"
defaultConfig.with {
applicationId = "com.nomad5.ndkdebug"
minSdkVersion.apiLevel = 16
targetSdkVersion.apiLevel = 23
versionCode = 1
versionName = "0.1"
}
}
/*
* native build settings
*/
android.ndk {
moduleName = "ndkDebugModule"
cppFlags.add("-I./../../../../../artoolkit5/include/ ")
}
android.buildTypes {
release {
minifyEnabled = false
proguardFiles.add(file('proguard-rules.txt'))
}
debug {
debuggable = true
ndk.with {
debuggable = true
}
}
}
}
/**
* The android native sources
*/
android.sources.main {
jni {
exportedHeaders {
srcDirs = [arRoot.absolutePath + "/include",
arRoot.absolutePath + "/android/jni/curl/include"]
}
source {
/* we set this to NOT automatically compile everything */
srcDirs = ["src/main"]
include "jni/nativeCodeA.cpp"
include "jni/nativeCodeB.cpp"
}
dependencies {
library "lib_ar2" linkage "static"
library "lib_kpm" linkage "static"
library "lib_util" linkage "static"
library "lib_eden" linkage "static"
library "lib_argsub_es" linkage "static"
library "lib_armulti" linkage "static"
library "lib_ar" linkage "static"
library "lib_aricp" linkage "static"
library "lib_jpeg" linkage "static"
library "lib_arvideo" linkage "static"
library "lib_cpufeatures" linkage "static"
library "lib_curl" linkage "static"
}
}
jniLibs {
source {
srcDirs = [arRoot.absolutePath + "/include",
arRoot.absolutePath + "/android/jni/curl/include"]
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile project(':aRBaseLib')
compile 'com.android.support:appcompat-v7:23.4.0'
}
gradle ndk 构建的问题是,在我的文件中(例如 nativeCodeA.cpp
)所有包含在 ../../../../../artoolkit5/android
未找到。所以所有的
#include <AR/ar.h>
#include <AR/arMulti.h>
#include <AR/video.h>
...
没有找到。
我如何像 LOCAL_C_INCLUDES
在 makefile 中那样将文件夹添加到 gradle aware ndk 构建中。我如何指定要编译的特定文件,例如 makefile 中的 LOCAL_SRC_FILES
。(即使没有明确指定这些文件,gradle 如何知道这些文件?)
顺便说一下我正在使用
distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-all.zip
与
'com.android.tools.build:gradle-experimental:0.4.0'
最佳答案
好的,我进行了大量研究并找到了一些有效的示例。首先,你必须在你的 root build.gradle 中使用最新的 gradle experimantal 插件
'com.android.tools.build:gradle-experimental:0.4.0'
然后你的 gradle 文件看起来像这样
apply plugin: 'com.android.model.application'
/**
* The ar.dir in relative format
*/
def arRoot = new File("../artoolkit5")
def arPath = arRoot.absolutePath + '/android/obj/local/'
def curlPath = arRoot.absolutePath + '/android/jni/curl/libs/'
/**
* The main experimental model
*/
model {
/**
* Android APK values
*/
android {
compileSdkVersion = 23
buildToolsVersion = "23.0.3"
defaultConfig.with {
applicationId = "com.nomad5.ndkdebug"
minSdkVersion.apiLevel = 16
targetSdkVersion.apiLevel = 23
versionCode = 1
versionName = "0.1"
}
}
/**
* The build types
*/
android.buildTypes {
release {
minifyEnabled = false
proguardFiles.add(file('proguard-rules.txt'))
}
debug {
debuggable = true
ndk.with {
debuggable = true
}
}
}
/**
* All statically linked libs
*/
repositories {
libs(PrebuiltLibraries) {
lib_ar2 {
binaries.withType(StaticLibraryBinary) {
staticLibraryFile = file("${arPath}${targetPlatform.getName()}/libar2.a")
}
}
lib_kpm {
binaries.withType(StaticLibraryBinary) {
staticLibraryFile = file("${arPath}${targetPlatform.getName()}/libkpm.a")
}
}
lib_util {
binaries.withType(StaticLibraryBinary) {
staticLibraryFile = file("${arPath}${targetPlatform.getName()}/libutil.a")
}
}
lib_eden {
binaries.withType(StaticLibraryBinary) {
staticLibraryFile = file("${arPath}${targetPlatform.getName()}/libeden.a")
}
}
lib_argsub_es {
binaries.withType(StaticLibraryBinary) {
staticLibraryFile = file("${arPath}${targetPlatform.getName()}/libargsub_es.a")
}
}
lib_armulti {
binaries.withType(StaticLibraryBinary) {
staticLibraryFile = file("${arPath}${targetPlatform.getName()}/libarmulti.a")
}
}
lib_ar {
binaries.withType(StaticLibraryBinary) {
staticLibraryFile = file("${arPath}${targetPlatform.getName()}/libar.a")
}
}
lib_aricp {
binaries.withType(StaticLibraryBinary) {
staticLibraryFile = file("${arPath}${targetPlatform.getName()}/libaricp.a")
}
}
lib_jpeg {
binaries.withType(StaticLibraryBinary) {
staticLibraryFile = file("${arPath}${targetPlatform.getName()}/libjpeg.a")
}
}
lib_arvideo {
binaries.withType(StaticLibraryBinary) {
staticLibraryFile = file("${arPath}${targetPlatform.getName()}/libarvideo.a")
}
}
lib_cpufeatures {
binaries.withType(StaticLibraryBinary) {
staticLibraryFile = file("${arPath}${targetPlatform.getName()}/libcpufeatures.a")
}
}
lib_curl {
binaries.withType(StaticLibraryBinary) {
staticLibraryFile = file("${curlPath}${targetPlatform.getName()}/libcurl.a")
}
}
}
}
/*
* native build settings
*/
android.ndk {
moduleName = "ndkDebugModule"
toolchain = "clang"
stl = "c++_static"
platformVersion = 15
cppFlags.addAll(["-frtti",
"-fexceptions",
"-I${file(arRoot.absolutePath + "/include")}".toString(),
"-I${file(arRoot.absolutePath + "/android/jni/curl/include")}".toString()
])
ldLibs.addAll(['android',
'log',
'z',
'GLESv1_CM'])
abiFilters.addAll(["armeabi-v7a",
/*"arm64-v8a",*/
"x86",
/*"x86_64"*/])
}
/**
* The android native sources
*/
android.sources.main {
jni {
exportedHeaders {
srcDirs = [arRoot.absolutePath + "/include",
arRoot.absolutePath + "/android/jni/curl/include"]
}
source {
/* we set this to NOT automatically compile everything */
srcDirs = ["src/main"]
include "jni/nativeCodeA.cpp"
include "jni/nativeCodeB.cpp"
}
dependencies {
library "lib_ar2" linkage "static"
library "lib_kpm" linkage "static"
library "lib_util" linkage "static"
library "lib_eden" linkage "static"
library "lib_argsub_es" linkage "static"
library "lib_armulti" linkage "static"
library "lib_ar" linkage "static"
library "lib_aricp" linkage "static"
library "lib_jpeg" linkage "static"
library "lib_arvideo" linkage "static"
library "lib_cpufeatures" linkage "static"
library "lib_curl" linkage "static"
}
}
jniLibs {
source {
srcDirs = [arRoot.absolutePath + "/include",
arRoot.absolutePath + "/android/jni/curl/include"]
}
}
}
}
/**
* The Java dependencies
*/
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile project(':aRBaseLib')
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
}
/**
* Dynamically add libs to the linker
*/
class SampleMigrationRuleSource extends RuleSource {
@Mutate
void injectArmeabiV7aDebugLinkerFlags(
@Path('tasks.linkNdkDebugModuleArmeabi-v7aDebugSharedLibrary')
Task linkTask) {
injectLinkerFlags(linkTask, 'armeabi-v7a', 'debug')
}
@Mutate
void injectArmeabiV7aReleaseLinkerFlags(
@Path('tasks.linkNdkDebugModuleArmeabi-v7aReleaseSharedLibrary')
Task linkTask) {
injectLinkerFlags(linkTask, 'armeabi-v7a', 'release')
}
@Mutate
void injectX86DebugLinkerFlags(
@Path('tasks.linkNdkDebugModuleX86DebugSharedLibrary')
Task linkTask) {
injectLinkerFlags(linkTask, 'x86', 'debug')
}
@Mutate
void injectX86ReleaseLinkerFlags(
@Path('tasks.linkNdkDebugModuleX86ReleaseSharedLibrary')
Task linkTask) {
injectLinkerFlags(linkTask, 'x86', 'release')
}
private void injectLinkerFlags(linkTask, arch, buildType) {
def arRoot = new File("../artoolkit5")
def arPath = arRoot.absolutePath + '/android/obj/local/'
def curlPath = arRoot.absolutePath + '/android/jni/curl/libs/'
linkTask.doFirst {
// We are pretty clueless on this one but it is needed
if (arch.equals('arm64-v8a')) {
properties["linkerArgs"].add("-fuse-ld=gold")
}
properties["linkerArgs"].addAll([
"-l${arPath}/${arch}/libar.a".toString(),
"-l${arPath}/${arch}/libar2.a".toString(),
"-l${arPath}/${arch}/libutil.a".toString(),
"-l${arPath}/${arch}/libkpm.a".toString(),
"-l${arPath}/${arch}/libeden.a".toString(),
"-l${arPath}/${arch}/libargsub_es.a".toString(),
"-l${arPath}/${arch}/libarmulti.a".toString(),
"-l${arPath}/${arch}/libaricp.a".toString(),
"-l${arPath}/${arch}/libjpeg.a".toString(),
"-l${arPath}/${arch}/libarvideo.a".toString(),
"-l${arPath}/${arch}/libcpufeatures.a".toString(),
"-l${curlPath}/${arch}/libcurl.a".toString(),
])
}
}
}
apply plugin: SampleMigrationRuleSource
关于Android gradle ndk jni build with external library & native debugging (ARToolkit),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39518274/
Debug.Assert/Debug.Fail 是否自动条件编译#if "DEBUG"?或者它是否更像是没有附加调试器(即使在发行版中)它什么也做不了?如果是这样,将它们留在您的代码中是否会对性能产生
我有一个应用程序,我配置了多个路由,一切正常,直到我配置的最新路由不起作用(显示错误的屏幕)。 我的问题是如何进行调试?没有打印错误日志,我无法找到如何获取有关正在发生的事情的更多日志。我也不知道从哪
我正在 Intellij 中调试代码。我使用 maven 来构建项目,并且在本地 .m2 存储库中有该项目的各种版本。当我开始调试时,Intellij 继续从项目的前一个快照中选择旧版本的代码。如何让
我喜欢在业余时间进行一些 TiVo 黑客事件 - TiVo 使用 Linux 变体和 TCL 。我想在我的 Windows 笔记本电脑上编写 TCL 脚本,测试它们,然后将它们通过 FTP 传输到我的
我有 ASM 代码,它使用循环语法打印 abc 。这是我的代码 ;abc.com .model small .code org 100h start: mov ah, 02h mov
我在 Debugging .net 2.0 Applications 中看到了以下代码 [Conditional("DEBUG")] void AssertTableExists() { #i
在大型项目中哪个更好用,为什么: #if DEBUG public void SetPrivateValue(int value) { ... } #endif 或 [System.D
我似乎无法让调试器运行。调试运行图标变灰,菜单选项丢失。 这只是main的情况,我可以很好地调试单元测试。 类似的问题提到了项目结构,但我看不出有什么不对: $GOPATH/src/foo.bar.c
只是想知道我的浏览器一直询问我是否想在每次点击浏览器链接刷新时停止调试非常烦人,因为这会减慢开发时间。 有没有其他人遇到过这个? 干杯 最佳答案 更新的答案,现在找到根本原因 经过两年看到这个错误时断
我正在尝试包含调试/发布相关编译器标志,例如: set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++0x -Wall -DUSE_BOOST") set
当我尝试使用 debug.phonegap.com 调试我的phonegap 应用程序时遇到问题。 我把这个视频放在 HTML 文档的头部 在启动应用程序之前,我从 build.phonegap.
GDB 7.0以后,支持反向调试。 生成核心转储时,我可以使用反向调试命令吗? 我怎样才能做到这一点? 最佳答案 你不能。核心文件是某个时间点程序状态的快照。要在该状态下向后移动,您需要程序状态的较早
首先:如果之前有人问过这个问题,我很抱歉。我是一个熟练的谷歌用户,但这确实让我难住了,我找不到任何东西。 我目前正在编写一个小型库,我想对其进行调试。我还希望能够完全关闭调试,并且编译后的代码不应包含
我想在 tomcat 中将级别日志记录设置为 DEBUG,但在控制台中仍然只有 INFO 和 WARN 输出。谁能告诉我哪里出了问题? 我的 C:\tomcat\logging.properties:
我已经开始像这样使用定义类了: internal sealed class Defines { /// /// This constant is set to true iff th
在使用编译器指令时,我不清楚以下两个代码片段中哪一个是正确/首选的,以及为什么。似乎我见过的大多数开发人员和开源项目都使用第一种,但我也看到第二种也经常使用。 #ifdef DEBUG [self d
我遇到错误,无法完成构建。我搜索了 Stackoverflow 和 Github。我已经尝试了很多方法,但我无法修复。请帮忙。 (1) 在 [src/nullnull/debug, src/debug
我刚刚意识到,使用 TFS 部署时,DEBUG 处理器指令仍然有效,有没有办法更改 TFS/Azure 网站或构建定义中的设置,而不是在本地解决方案配置? 我仍然希望本地解决方案保持调试状态,只有部署
我有一段代码在 VS2008,C++ 中以 Debug模式运行。 问题是,当我逐行调试代码时,在代码的一个非常奇怪的地方,它崩溃并说: debug assertion faild. Expressio
我有一个简单的 Xamarin.Forms 项目,我在 Visual Studio 中运行,使用 iphone 模拟器。我在 App.cs 中有以下代码: protected override voi
我是一名优秀的程序员,十分优秀!