Referencetable Overflow (max=512) Jni
I am a little stuck with this one... ReferenceTable overflow (max=512), I am sure it has to do with the Number of Local References getting created in my native method call... To wo
Solution 1:
You need to delete local reference from oneDim
object: env->DeleteLocalRef(oneDim);
.
Post a Comment for "Referencetable Overflow (max=512) Jni"