2019-06-20 22:13:40 +02:00
|
|
|
# VULCAN UONET+ SDK
|
2018-06-27 16:21:09 +02:00
|
|
|
|
2018-07-12 17:24:15 +02:00
|
|
|
[![Codecov branch](https://img.shields.io/codecov/c/github/wulkanowy/sdk/master.svg?style=flat-square)](https://codecov.io/gh/wulkanowy/sdk)
|
|
|
|
[![CircleCI branch](https://img.shields.io/circleci/project/github/wulkanowy/sdk/master.svg?style=flat-square)](https://circleci.com/gh/wulkanowy/sdk)
|
2019-12-22 17:46:54 +01:00
|
|
|
[![Bintray](https://img.shields.io/bintray/v/wulkanowy/wulkanowy/sdk.svg?style=flat-square)](https://bintray.com/wulkanowy/wulkanowy/sdk)
|
2019-06-20 22:13:40 +02:00
|
|
|
[![JitPack](https://img.shields.io/jitpack/v/wulkanowy/sdk.svg?style=flat-square)](https://jitpack.io/#wulkanowy/sdk)
|
|
|
|
[![License](https://img.shields.io/github/license/wulkanowy/sdk.svg?style=flat-square)](https://github.com/wulkanowy/sdk)
|
|
|
|
[![Discord](https://img.shields.io/discord/390889354199040011.svg?style=flat-square)](https://discord.gg/vccAQBr)
|
2018-07-12 17:24:15 +02:00
|
|
|
|
2019-06-20 22:13:40 +02:00
|
|
|
> Unified way of retrieving data from the UONET+ register through mobile api and scraping api
|
|
|
|
|
|
|
|
## Features
|
|
|
|
|
2019-11-17 00:45:53 +01:00
|
|
|
Check it out [full public api](https://github.com/wulkanowy/sdk/blob/master/sdk/src/main/kotlin/io/github/wulkanowy/sdk/Sdk.kt)
|
|
|
|
and [test examples](https://github.com/wulkanowy/sdk/blob/master/sdk/src/test/kotlin/io/github/wulkanowy/sdk/SdkRemoteTest.kt).
|
2019-06-20 22:13:40 +02:00
|
|
|
|
|
|
|
|
2019-12-22 17:46:54 +01:00
|
|
|
## Documentation
|
|
|
|
|
|
|
|
Check [wiki page](https://github.com/wulkanowy/sdk/wiki).
|
|
|
|
|
2019-06-20 22:13:40 +02:00
|
|
|
## Download
|
|
|
|
|
|
|
|
```gradle
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2019-11-17 00:45:53 +01:00
|
|
|
...
|
2019-06-20 22:13:40 +02:00
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
2020-04-12 18:57:02 +02:00
|
|
|
implementation 'io.github.wulkanowy:sdk:0.17.1'
|
2019-06-20 22:13:40 +02:00
|
|
|
}
|
|
|
|
```
|