No description
Find a file
2023-07-22 13:36:24 +00:00
.github Fix needs build name 2023-05-25 22:22:03 +02:00
.idea Move lib ver def out of versions catalog config 2023-05-20 16:40:52 +02:00
docs Make snapshot repo clickable 2023-05-28 23:03:20 +02:00
gradle/wrapper Update gradle wrapper to 8.1 2023-04-15 22:12:33 +02:00
sdk Make description in grade descriptive scrpper pojo nullable 2023-06-05 21:17:14 +02:00
sdk-hebe Replace migbase64 with base64 decoder from kotlin stdlib 2023-05-13 21:45:24 +02:00
sdk-scrapper Fix messed up params in sendPasswordResetRequest() call 2023-06-08 23:14:12 +02:00
.editorconfig Bring back getStudentsHybrid method 2023-04-15 21:04:29 +02:00
.gitignore Remove getStudents() API 2023-04-15 22:39:36 +02:00
build.gradle Bump org.jlleitschuh.gradle.ktlint from 11.3.2 to 11.4.2 (#173) 2023-07-22 13:36:24 +00:00
gradlew Update gradle wrapper to 8.1 2023-04-15 22:12:33 +02:00
gradlew.bat Update gradle wrapper to 8.1 2023-04-15 22:12:33 +02:00
jitpack.yml Add jdk config for jitpack 2022-08-01 23:22:24 +02:00
LICENSE Update date in LICENSE file (#149) 2023-01-01 20:30:28 +01:00
README.md Make snapshot repo clickable 2023-05-28 23:03:20 +02:00
settings.gradle Use snapshot version of retrofit to fix r8 full mode issues 2023-05-23 02:23:03 +02:00

VULCAN UONET+ SDK

GitHub Workflow status Codecov branch Maven Central Sonatype Nexus (Snapshots) JitPack License Discord

Unified way of retrieving data from the UONET+ register through mobile api and scraping api

Features

Check it out full public api and test examples.

Documentation

Check wiki page.

Download

allprojects {
    repositories {
        // for stable releases
        mavenCentral()

        // for snapshots
        maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" }

        // for everything
        maven { url 'https://jitpack.io' }
    }
}
dependencies {
    implementation 'io.github.wulkanowy:sdk:<version>'
}