| /* |
| * Copyright (c) 2018 The WebRTC project authors. All Rights Reserved. |
| * |
| * Use of this source code is governed by a BSD-style license |
| * that can be found in the LICENSE file in the root of the source |
| * tree. An additional intellectual property rights grant can be found |
| * in the file PATENTS. All contributing project authors may |
| * be found in the AUTHORS file in the root of the source tree. |
| */ |
| |
| #include <jni.h> |
| #undef JNIEXPORT |
| #define JNIEXPORT __attribute__((visibility("default"))) |
| |
| #include "rtc_base/checks.h" |
| #include "sdk/android/native_api/base/init.h" |
| #include "sdk/android/native_api/jni/java_types.h" |
| |
| // This is called by the VM when the shared library is first loaded. |
| JNIEXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) { |
| webrtc::InitAndroid(vm); |
| return JNI_VERSION_1_4; |
| } |