doorbash / backend-services-android

Android client for https://github.com/doorbash/backend-services

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Backend-Services-Android

Android client for https://github.com/doorbash/backend-services

Download

repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    implementation 'com.github.doorbash:backend-services-android:1.3.6'
}

Usage

Client.init(this, new ClientOptions(
        BuildConfig.VERSION_CODE,
        BuildConfig.APPLICATION_ID,
        "https://your.domain.com/api",
        20,
        false,
        "Notifications",
        R.drawable.ic_notification_icon
));
BackendServicesNotificationsClient.enqueueWorker(this);
BackendServicesRemoteConfigClient.enqueueWorker(this);

Examples

About

Android client for https://github.com/doorbash/backend-services

License:MIT License


Languages

Language:Kotlin 99.3%Language:Java 0.7%