fixed... a quotation mark

This commit is contained in:
Joseph Henry
2016-06-22 16:18:46 -07:00
parent 7c0217a93a
commit ee54905035
3 changed files with 7 additions and 13 deletions

View File

@@ -25,7 +25,7 @@ In this example we aim to set up a minimal [Android Studio](https://developer.an
package ZeroTierSDK;
public class ZeroTierSDK_Wrapper {
public native void startOneService();
static { System.loadLibrary("ZeroTierOneJNI); } // Loads JNI code
static { System.loadLibrary("ZeroTierOneJNI"); } // Loads JNI code
}
```