diff options
Diffstat (limited to 'runtime/runtime.cc')
| -rw-r--r-- | runtime/runtime.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/runtime.cc b/runtime/runtime.cc index b868563634..ca65c2bea3 100644 --- a/runtime/runtime.cc +++ b/runtime/runtime.cc @@ -559,7 +559,10 @@ static jobject CreateSystemClassLoader(Runtime* runtime) { "getSystemClassLoader", "()Ljava/lang/ClassLoader;", pointer_size); CHECK(getSystemClassLoader != nullptr); - JValue result = InvokeWithJValues(soa, nullptr, soa.EncodeMethod(getSystemClassLoader), nullptr); + JValue result = InvokeWithJValues(soa, + nullptr, + jni::EncodeArtMethod(getSystemClassLoader), + nullptr); JNIEnv* env = soa.Self()->GetJniEnv(); ScopedLocalRef<jobject> system_class_loader(env, soa.AddLocalReference<jobject>(result.GetL())); CHECK(system_class_loader.get() != nullptr); |