An open API service indexing awesome lists of open source software.

https://github.com/ipcjs/java-support


https://github.com/ipcjs/java-support

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

# DEPRECATED

Use [Android Studio 4.0](https://developer.android.com/studio/write/java8-support?hl=en#library-desugaring) insteand.

# java-support

[![](https://jitpack.io/v/ipcjs/java-support.svg)](https://jitpack.io/#ipcjs/java-support)

All files copy from Android Source Code.

## Features

- Functional Interface: `java.util.function.*` -> `java8.util.function.*`
- Objects: `java.util.Objects` -> `java7.util.Objects`
- Optional: `java.util.Optional*` -> `java8.util.Optional*`

## Usage

```groovy
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
dependencies {
compile 'com.github.ipcjs:java-support:0.1.0'
}
```