I am trying to make APP native code for Android. The Native code is in cplusplus. Whenever I try to make, the following error appears.
H236Plus.cpp:13
I solved this problem by adding cFlags "-fexceptions" into ndk section of build.gradle script, like this:
ndk { ... cFlags "-fexceptions" }