blob: 4817b20fe2b00f73828b9c2fd3d5632b72e3182a [file] [log] [blame]
<#if includeCppSupport!false>
/**
* A native method that is implemented by the 'native-lib' native library,
* which is packaged with this application.
*/
public native String stringFromJNI();
// Used to load the 'native-lib' library on application startup.
static {
System.loadLibrary("native-lib");
}
</#if>