I have a C++ project:
project structer
projectname-
|
a_folder ->
|- file1.cpp,file2.h
b_folder ->
|- file1.cpp,file2.h
|
c_folder ->
|
c.1_folder->
|- file1.cpp,file2.h
|
file1.cpp,file2.h
...
...
main.cpp
project_interface.cpp
project_interface.h
I read a lot on this subject but i don't really understand the flow of the process to make it work.
i manage to get the NDK example work and still after that its not really clear to me.
Also i want to get .a file from the c++ project not import the actually files into my android project. so this example not relevant.
The big question is what is the full process to get c++ project to work in android ?
** The job requirement is android app that use the c++ library to calculate stuff.
**i don't look for the all process to its details just the flow steps.