Tagged Questions
0
votes
0answers
9 views
Using multiple modules in Android NDK
I having trouble setting up my Android NDK based project with multiple modules which depend on each other.
What I would like to accomplish:
jni
Application.mk
Android.mk (includes ...
0
votes
1answer
20 views
Refactor Android NDK make files into modules
I'm having trouble refactoring some make files into manageable modules.
Following is the structure I try to accomplish:
jni/Android.mk
jni/Application.mk
jni/libobj/Android.mk
jni/libpng/Android.mk
...
0
votes
1answer
36 views
Android NDK - Where to put the .so file which specified in LOCAL_SHARED_LIBRARIES?
I have successfully build libcurl for android as a shared library, both armeabi-v7a and x86, and one of my project depends on it. I have set "LOCAL_SHARED_LIBRARIES := libcurl", the problem is where ...
0
votes
1answer
30 views
Android NDK - How to specify different CFLAGS to different platform using Android.mk
I need to build a library for both armeabi-v7a and x86 platform, on armeabi-v7a I need LOCAL_CFLAGS="-O3 -mfpu=neon", however on x86 I only need LOCAL_CFLAGS="-O3" since -mfpu=neon is not supported. ...
0
votes
2answers
64 views
Android NDK Build failing for simple native function
I am trying to build a very simple native function using ndk-build and getting the following error.
DriverAdapter.cpp:6:69: error: expected ',' or '...' before 'this'
The following are my .mk and ...
0
votes
2answers
92 views
Building ARMv7a regular and neon at the same time
Since I have a very processing intensive App I would like to build a variant with NEON / Advanced SIMD support. Also I have multiple source files with algorithms, so I don't want to enable neon for ...
0
votes
0answers
50 views
build-binary.mk:266: warning: ignoring old com mands for target
Hi guys got the following warnings while compiling the ndk-build...Please siggest me with a soution.
C:\NDK\android-ndk-r8d>ndk-build -C C:\AndroidProjects\JniTim1Test\jni
make: Entering ...
0
votes
0answers
104 views
Visual Studio + No Startup Project
I have setup my project after importing some (nv_util and such) libraries and it compiles and builds everything. But when I try to run it I get the following message - Just to be clear - I have set ...
1
vote
1answer
328 views
Android NDK: native activity “unable to load native library”
I am attempting to build an Android-10 NDK native activity based on the "native-activity" sample project from the Android NDK folder. However, my native activity crashes with the following runtime ...
1
vote
1answer
76 views
What is a Module in context of an Android JNI App?
I'm new to JNI, C++ and make files. In the Application.mk of my sample Android-JNI-C++ project their is a APP_MODULES property.
The Android NDK documentation just says
APP_MODULES
This ...
0
votes
1answer
142 views
Compiling for Android NDK: unable to find Android NDK function definitions
I am attempting to compile an Android-9 project that calls Android NDK functions (such as "AAsset_close") by running "ndk-build" via the Cygwin terminal, but the "ndk-build" command returns an error ...
0
votes
1answer
366 views
Copy multiple txt files in /system using Android.mk
Aim : I want to copy multiple txt files in /system ( of Android Device ) using Android.mk
My Findings :
We can copy file using two approach
1) Use PRODUCT_COPY_FILES. This is done from devices/ / ...
0
votes
1answer
103 views
GMAKE: force prerequisite rule dependency of all c/cpp files (android NDK)
How can I add prerequisite rule for all source files (c/cpp)? It would be simple if entire make file was done by me, but I use android build system that hides most of the stuff from me.
The reason I ...
1
vote
1answer
875 views
NDK can't find the application directory
When running the ndk-build command I get the following error:
Android NDK: Could not find application project directory !
Android NDK: Please define the NDK_PROJECT_PATH variable to point to it.
...
7
votes
1answer
2k views
Every NDK build is a full rebuild [duplicate]
Possible Duplicate:
Prevent ndk-build from automatically cleaning module
Android project with an NDK library. NDK r8c. Compiling under Cygwin (it's an old project).
A bunch of C++ and C ...
0
votes
1answer
169 views
android-ndk-r6-crystax-2 error: 'string' in namespace 'std' does not name a type
I have a project that builds fine with android-ndk-r4-crystax but when that I switched to android-ndk-r6-crystax I get the following error:
error: 'string' in namespace 'std' does not name a type
...
0
votes
1answer
1k views
Android ndk-build failed
I'm trying to debug .so library, using NDK for Android.
I'm able to build .so library, using ndk-build. But when I want to debug my library,
I set ndk-build NDK_DEBUG = 1 and receive following error: ...
0
votes
1answer
193 views
my android phone can not run when “LOCAL_ARM_NEON := true” in makefile
the appliction abort when i add LOCAL_ARM_NEON := true in android.mk, even without any neon instructions. some words like "-mfpu=neon" alse cause abort.
my phone is motorola android2.2
is my ...
1
vote
1answer
711 views
fatal error: vector: No such file or directory
I have an Android project comprising of lots of native code in C++. However, I am unable to build my library as it is not able to find out vector.h header file. What could be the issue ?
A sample of ...
3
votes
1answer
303 views
Android NDK: custom pre-build step?
NDK 8b, Eclipse / Cygwin
I'm trying to add custom pre-build steps to Android.mk:
1) for every *.xyz file in the source tree, run a custom tool which generates corresponding .h and .cpp files
2) add ...
3
votes
2answers
99 views
extra info in android makefiles
I'm trying to get some information about my Android Makefile, but echo doesn't work for printting messages.
Is there any way of printting a variable?
4
votes
2answers
453 views
How to compile two different libraries in same Android.mk linking one of them to other
I have source code of 2 different libraries, FooMain and FooSecondary. FooSecondary is used by FooMain, so, makefile must compile First FooSecondary, then compile FooMain, and then link FooSecondary ...
2
votes
2answers
713 views
Android NDK - Force library rebuild on configuration change
Is there a way to force the Android NDK to rebuild a particular library when changing build configurations in Eclipse?
I am building building an Android Project using the Android NDK to build C++ ...
1
vote
1answer
401 views
Android.mk - how to do wildcard in source folder
That's how i do wildcard in JNI folder
include $(CLEAR_VARS)
LOCAL_MODULE := some_module_name
LOCAL_SRC_FILES := $(notdir $(wildcard $(LOCAL_PATH)/*.cpp))
include $(BUILD_SHARED_LIBRARY)
Now i ...
0
votes
0answers
130 views
Android Crystax NDK wide character functions in static library
I use Crystax NDK and I have 2 make files that produce a static library (libA.a) and a shared library (libB.so). Module B is dependent on module A (which is reflected by LOCAL_STATIC_LIBRARIES in B's ...
2
votes
1answer
480 views
ndk-build can't find files under jni directory
I have a very simple test project. Basically one native c file under jni (jni is
under the root of the project, in the same directory as 'src' 'res' etc). The make
file is the basically the simplest:
...
1
vote
1answer
327 views
Linker trouble when using LuaJIT prebuilt static library with android under cygwin
I think I spent most of yesterday unsuccessfully wrestling with this, any help would greatly appreciated and make me extremely happy! Even a next step to try to find the root of the issue is something ...
3
votes
1answer
912 views
How to run custom rule in Android.mk before compilation?
In Android NDK, I build JNI files generated automatically by SWIG. callmanager_wrap.cpp is part of a shared library:
LOCAL_SRC_FILES += callmanager_wrap.cpp
include $(BUILD_SHARED_LIBRARY)
But I ...
0
votes
1answer
356 views
Add a prebuilt .so file to android project and load it using dlopen with ndk
I have a prebuilt shared object file (mylib.so) and API file (mylib.h) also. Now I have to include these files in my project. I want to call the functions in this library using native interface.
But ...
4
votes
1answer
208 views
How to prevent Android native project full rebuild after changing Android.mk?
I'm editing Android.mk of my project to fine-tune some compiler options. Every time the build process is started from scratch. I don't want to do a full rebuild after each and every change. Is there a ...
0
votes
1answer
384 views
Not able to generate static library of openssl using ndk for android
I have written one module in cpp which uses openssl for SSL communication. I decided to use this module in android application by writing JNI layer above this one. Now the main problem is I need ...
2
votes
2answers
84 views
Android.mki include execution sequence
LOCAL_PATH := $(call my-dir)
TOP_LOCAL_PATH := $(call my-dir)/../
#Add target arm version
ifeq ($(TARGET_ARCH_ABI),armeabi)
MY_PJSIP_FLAGS := $(BASE_PJSIP_FLAGS) -DPJ_HAS_FLOATING_POINT=0
else
...
2
votes
1answer
130 views
A different make file for each architecture - Android NDK
I'm targeting more than 1 architecture with my c/c++ code compiled with the NDK, the problem is that i need to have a clear organization about my make files, i also have to set the same environment ...
0
votes
0answers
127 views
can create a shared libxml2
i am creating an application in android using ndk and jni.In my app i have requirement to parse xml data.for which i have used libxml2.
when i am making a static library of libxml2 and use,it works ...
1
vote
1answer
813 views
How to include Android.mk in another makefile
I have a problem including another Android.mk and build the dependent shared library.
Makefile:
LOCAL_PATH := $(call my-dir)
MY_CORE_PATH := $(abspath $(LOCAL_PATH)/../..)
include $(CLEAR_VARS)
...
1
vote
2answers
111 views
avoid using of .a for creation of .so
i have created an android application,here most of my code is in c so i have created it using jni. i have to create socket.so file, in which i have to use the libtest.so.
while using the libtest.so ...
0
votes
1answer
187 views
Error while using cvBlobsLib library in Android native code
I need to use the cvBlobsLib library (cvblobslib_opencv_v8_3) in Android native code. The problem is when I run the Android.mk file, I am getting an error:
fatal error: OpenCV/opencv/cxcore.h: No ...
3
votes
2answers
672 views
NDK-Use of .a file in C file
I'm trying to use a .a file in my C code to use in Java (sorry for my bad English). I created myself a static library named libtest.a. now when i include files present in that library in gives me ...
0
votes
2answers
357 views
Android.mk: shared library not linked
I am trying to include my library libtest.so into another library.
libtest.so is successfully compiled and in the folder:
$PROJECT/obj/local/armeabi/libtest.so
When I tried to use it in my ...
0
votes
1answer
236 views
Changes in Android.mk not changing libs
I'm trying to get my Android.mk file to optimize the binaries:
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := fred
LOCAL_SRC_FILES := fred.c
LOCAL_LDLIBS := -llog
...
2
votes
2answers
1k views
Linking libpng to android native project
I am having problems trying to load libpng in my native android project.
It seems, that the compiler doesn't recognize libpng functions, but does recognize types (like png_byte). It compiles normally ...
1
vote
1answer
93 views
How to build for subset of architectures when building for release
I currently build my Android native libraries for several targets but as a build speed improvement I would like to build a subset based on the optimization setting. I tried something like this in the ...
0
votes
3answers
877 views
how to setup a prebuilt library in jni for android?
hi, i need to use a prebuilt library in my native code so i am placing the library following the example in ndk/samples/native-activity. Below is the structure. Please some one help me out with ...
0
votes
1answer
657 views
Dynamic C/C++ lib for Android 2.2: error Symbol not found
I have two projects. One of them is Android app with native code, which just loads dynamically library android_lib.so.
Another project is that library (android_lib.so). Code of this library is ...
-1
votes
1answer
2k views
cygwin cannot find make program
What I'm trying to do is successfully compile native code using Cygwin. The error message i get when i run type my directory to the ndk-build in the terminal is
ERROR: Cannot find 'make' program. ...
0
votes
2answers
376 views
how to compile an Android NDK lib to a static iOS lib
I have a C++ codebase which is used by our Android project via JNI (build scripts and such are all Android-specific). I need to update our Objective C project with it which is using an older version ...
2
votes
2answers
417 views
Changes to imported makefile don't trigger rebuild in android-ndk
I have an Android JNI project I'd like to compile with ndk-build. The project contains of multiple third-party sub projects.
+- jni
+- Android.mk
+- my-proj.mk
+- other-proj.mk
+- ...
5
votes
2answers
2k views
Getting “Multiple Target Patterns. Stop.” error when attempting to build for Android with ndk-build
I switched between using Cygwin and the ndk-7 ndk-build script and using the ndk-build.cmd script to build on Windows using the precompiled libraries. When I tried switching back to building from ...
3
votes
1answer
4k views
How to link any libarary in ndk application
from this tutorial
http://marakana.com/forums/android/examples/49.html
see i have one pre-built static library named as stackoverflow.a and it has stackoverflow.h
now i want to use the function ...
1
vote
0answers
324 views
Android NDK makefile: Add recursive header search path
I'm porting an iPhone game (c++) to Android and I'm just getting started with this.
Is there any way I can add a recursive header search path in the Android.mk file?
Because all the #includes in my ...





