Warning, /sdk/clazy/docs/checks/README-jni-signatures.md is written in an unsupported language. File is not indexed.

0001 # jni-signatures
0002 
0003 Tries to find invalid JNI signatures in QAndroidJniObject usage. Those will lead to runtime errors.
0004 
0005 #### Example
0006 ```
0007     QAndroidJniObject::callStaticMethod("toString", "()Ljava/lang/String"); // Should be '()Ljava/lang/String;'
0008 ```
0009 
0010 #### Pitfalls
0011 For this check to work you need to set the ANDROID_NDK environment variable to your Android NDK installation.