Just downloaded the trial. We have a lot of in-house libraries in our project so that is the first thing I tested.
The program and the debugging were great. However intellisense has no idea about the library.
#include <string.h>
#include <jni.h>
#include <stdio.h>
#include “Library.h”
int s_ButtonPressCounter = 0;
Imagine that italic part with a squiggly line. The function MyTestFunction was also not recognized. Again I want to emphasize that the function was called correctly on the android device so it is not a compiler problem.
The tutorial for creating a native library did not mention any steps involving adding include directories, is that necessary to get intellisense to work correctly?