I have an Android Plugin that communicates with Java. It returns from Java with a native function. One of the parameters of this function is JObject. How can I convert this JObject into an FJsonObject?
Java native function:
public native void nativeFacebookOnLoadFriendsComplete(JSONObject Object);
And this is the C++ function:
extern "C" void Java_com_epicgames_ue4_GameActivity_nativeFacebookOnLoadFriendsComplete(JNIEnv* jenv, jobject thiz, jobject object) { }