How do I use this in Android / Android Studio?
See original GitHub issueThe latest version of Android Studio supports Java 8 and my build.gradle file has
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
How can I import this library into my project?
Issue Analytics
- State:
- Created 7 years ago
- Comments:10 (4 by maintainers)
Top Results From Across the Web
Meet Android Studio | Android Developers
Android Studio is the official Integrated Development Environment (IDE) for Android app development, based on IntelliJ IDEA . On top of IntelliJ's powerful ......
Read more >Maps SDK for Android Quickstart - Google Developers
Create an Android app that displays a map by using the Google Maps template for Android Studio. If you have an existing Android...
Read more >Understanding the Android Application Class
This class is primarily used for initialization of global state before the first Activity is displayed. Note that custom Application objects should be...
Read more >Developing with Android Studio
1. Create an Android project if you haven't already created one. · 2. Enter project name, package name and minimum SDK version. ·...
Read more >Android - Hello World Example - Tutorialspoint
Before you start writing your first example using Android SDK, you have to make sure that you have set-up your Android development environment...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

The current version does not build for android, as the android compiler still has a few bugs.
The version in #376 works. You need to checkout that branch and build a jar. Then follow the instructions of gradle on how to include a custom jar into your project. Probably just copying the jar into the application’s
libsfolder will do.Okay, thank you for your help.