Skip to content

Commit ee1ca35

Browse files
Fix the HttpClient method Id (#1596)
HttpClient's method `send` was not properly resolved Relates-To: HERESDK-6072 Signed-off-by: Mykhailo Kuchma <ext-mykhailo.kuchma@here.com>
1 parent 338abf5 commit ee1ca35

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

olp-cpp-sdk-core/src/http/android/NetworkAndroid.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -338,10 +338,10 @@ bool NetworkAndroid::Initialize() {
338338
env->DeleteLocalRef(obj);
339339

340340
// Get send method
341-
jni_send_method_ = env->GetMethodID(
342-
java_self_class_, "send",
343-
"(Ljava/lang/String;IJII[Ljava/lang/String;[BLjava/lang/String;III)Lcom/"
344-
"here/olp/network/HttpClient$HttpTask;");
341+
jni_send_method_ =
342+
env->GetMethodID(java_self_class_, "send",
343+
"(Ljava/lang/String;IJII[Ljava/lang/String;[BLjava/lang/"
344+
"String;II)Lcom/here/olp/network/HttpClient$HttpTask;");
345345

346346
if (env->ExceptionOccurred()) {
347347
OLP_SDK_LOG_ERROR(

0 commit comments

Comments
 (0)