commit | 7998955435c0cfff5a68ba1d36fa7a737fe3671f | [log] [tgz] |
---|---|---|
author | Sadaf Ebrahimi <[email protected]> | Wed Dec 18 20:12:09 2024 +0000 |
committer | Sadaf Ebrahimi <[email protected]> | Wed Dec 18 20:26:57 2024 +0000 |
tree | aaeeb5255dd3204f6c5241ef3d419c7d597651ff | |
parent | c8aa242439554f5837cae9ec0d53af99c05f8774 [diff] |
Add janitors to the OWNERS file Test: TreeHugger Change-Id: I8479c58d5407d9d2e403cd452bc154148212aac3
The Facebook JNI helpers library is designed to simplify usage of the Java Native Interface. The helpers were implemented to ease the integration of cross-platform mobile code on Android, but there are no Android specifics in the design. It can be used with any Java VM that supports JNI.
struct JMyClass : JavaClass<JMyClass> { static constexpr auto kJavaDescriptor = "Lcom/example/MyClass;"; // Automatic inference of Java method descriptors. static std::string concatenate( alias_ref<JClass> clazz, // Automatic conversion to std::string. std::string prefix) { // Call methods easily. static const auto getSuffix = clazz->getStaticMethod<JString()>("getSuffix"); // Manage JNI references automatically. local_ref<JString> jstr = getSuffix(clazz); // Automatic exception translation between Java and C++ (both ways). // No need to check exception state after each call. result += jstr->toStdString(); // Automatic conversion from std::string. return result; } };
fbjni is Apache-2 licensed, as found in the LICENSE file.