https://github.com/ipcjs/java-support
https://github.com/ipcjs/java-support
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ipcjs/java-support
- Owner: ipcjs
- License: apache-2.0
- Created: 2017-09-08T10:23:22.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-05-29T02:27:05.000Z (about 6 years ago)
- Last Synced: 2025-03-18T15:03:03.645Z (about 1 year ago)
- Language: Java
- Size: 194 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/#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'
}
```