/android-sample

Working example of PLUX's Android API.

Primary LanguageJava

API

PLUX API Android Sample App


Working example of PLUX's Android API.

Prerequisites

  • Android Studio or IntelliJ IDEA
  • Android SDK (build-tools 28.0.0 and SDK 33)

Supported Devices

How-to use the library in your projects

  1. In your root-level (project-level) Gradle file add the repository URL link to the repositories block:
repositories {
        // ... other dependencies
        maven { url "https://codeberg.org/api/packages/MavenPLUX/maven" }
    }
  1. In your module (app-level) Gradle file add the dependency for the PLUX API Android library.
dependencies {
    // ... other dependencies
    implementation 'info.plux.api:api:1.5.2'
}