forked from organicmaps/organicmaps
[android] Fixed local reference table overflow during getting localized names for feature types
This commit is contained in:
parent
d665a38d9c
commit
bcf6966318
1 changed files with 4 additions and 5 deletions
|
@ -22,11 +22,10 @@ std::string GetLocalizedStringByUtil(jmethodID const & methodId, std::string con
|
|||
JNIEnv * env = jni::GetEnv();
|
||||
|
||||
jni::TScopedLocalRef strRef(env, jni::ToJavaString(env, str));
|
||||
auto localizedString = env->CallStaticObjectMethod(g_utilsClazz, methodId,
|
||||
android::Platform::Instance().GetContext(),
|
||||
strRef.get());
|
||||
|
||||
return jni::ToNativeString(env, static_cast<jstring>(localizedString));
|
||||
jobject context = android::Platform::Instance().GetContext();
|
||||
jni::TScopedLocalRef localizedStrRef(env, env->CallStaticObjectMethod(g_utilsClazz, methodId,
|
||||
context, strRef.get()));
|
||||
return jni::ToNativeString(env, static_cast<jstring>(localizedStrRef.get()));
|
||||
}
|
||||
} // namespace
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue