2
0

Added some missing build files.

This commit is contained in:
Maarten Billemont
2018-06-17 01:48:36 -04:00
parent ada1c7f6ae
commit b6e6dce9f0
4 changed files with 33 additions and 2 deletions

View File

@@ -8,7 +8,7 @@
JNIEXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) {
JNIEnv* env;
if (vm->GetEnv(&env, JNI_VERSION_1_6) != JNI_OK)
if ((*vm)->GetEnv( vm, (void **)&env, JNI_VERSION_1_6 ) != JNI_OK)
return -1;
return JNI_VERSION_1_6;

View File

@@ -16,7 +16,7 @@ dependencies {
api group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'
api group: 'com.google.code.findbugs', name: 'findbugs-annotations', version: '3.0.1'
//lib project( path: ':masterpassword-core', configuration: 'default' )
lib project( path: ':masterpassword-core', configuration: 'default' )
}
processResources {