diff --git a/README.md b/README.md index 2f7fcd4..4e8e685 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,17 @@ Installation of the android SDK is very straightforward. - Download the SDK and unzip it. - Add the eyesquare-android-sdk.aar file to your project. +The sdk requires that you enable Java 8 in your builds. You can learn more about how to enable this at https://developer.android.com/studio/write/java8-support. Essentially adding the following to your application's `build.gradle`: + +``` +android { + ... + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } +``` + ### Supported versions Android 4.4 or higher diff --git a/eyesquare-android-sdk.zip b/eyesquare-android-sdk.zip index e25dd04..3c732c3 100644 Binary files a/eyesquare-android-sdk.zip and b/eyesquare-android-sdk.zip differ