Skip to content

Commit

Permalink
fix: fix jni signature
Browse files Browse the repository at this point in the history
  • Loading branch information
fractalwrench committed Jul 19, 2024
1 parent 975f4cf commit dea8429
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions embrace-android-sdk/src/main/cpp/utils/cpuinfo.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jstring emb_get_property(JNIEnv *env, const char* key) {
}

JNIEXPORT jstring JNICALL
Java_io_embrace_android_embracesdk_capture_cpu_EmbraceCpuInfoDelegate_getNativeCpuName(JNIEnv* env, jobject thiz) {
Java_io_embrace_android_embracesdk_internal_capture_cpu_EmbraceCpuInfoDelegate_getNativeCpuName(JNIEnv* env, jobject thiz) {
return emb_get_property(env, CPUINFO_CPU_NAME_KEY);
}

JNIEXPORT jstring JNICALL
Java_io_embrace_android_embracesdk_capture_cpu_EmbraceCpuInfoDelegate_getNativeEgl(JNIEnv* env, jobject thiz) {
Java_io_embrace_android_embracesdk_internal_capture_cpu_EmbraceCpuInfoDelegate_getNativeEgl(JNIEnv* env, jobject thiz) {
return emb_get_property(env, CPUINFO_EGL_KEY);
}

0 comments on commit dea8429

Please sign in to comment.