Skip to content

Commit

Permalink
java 8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
cviejo committed Sep 10, 2019
1 parent 5ca6fd8 commit 9983ef1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Binary file modified eyesquare-android-sdk.zip
Binary file not shown.

0 comments on commit 9983ef1

Please sign in to comment.