We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi~~The AnalyticX.cpp file should DeleteLocalRef when method is done?
Just like
if (!isHave) { //do nothing } else { jstring stringArg0 = minfo.env->NewStringUTF("flurryLogEvent"); jstring stringArg1 = minfo.env->NewStringUTF(eventName); jstring stringArg2 = minfo.env->NewStringUTF("false");
minfo.env->CallStaticVoidMethod(minfo.classID, minfo.methodID, stringArg0, stringArg1, stringArg2); minfo.env->DeleteLocalRef(stringArg0); minfo.env->DeleteLocalRef(stringArg1); minfo.env->DeleteLocalRef(stringArg2); minfo.env->DeleteLocalRef(minfo.classID);
}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi~~The AnalyticX.cpp file should DeleteLocalRef when method is done?
Just like
if (!isHave) {
//do nothing
} else {
jstring stringArg0 = minfo.env->NewStringUTF("flurryLogEvent");
jstring stringArg1 = minfo.env->NewStringUTF(eventName);
jstring stringArg2 = minfo.env->NewStringUTF("false");
}
The text was updated successfully, but these errors were encountered: