Slyce-Inc / Slyce-Android-SDK

Slyce Android SDK

Home Page:https://slyce.it

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Slyce Android SDK

GitHub release

The Slyce Android SDK makes it easy to add visual search capabilities to mobile apps.

(Beta) Maven Distribution

Starting with version 5.13.1, the Slyce Android SDK is now available as a maven dependency via the Github Package Registry. You'll need to add the repository, usually in your top-level build.gradle:

allprojects {
    repositories {
        google()
        jcenter()

        maven {
            // Add Slyce-Android-SDK maven repo from Github Package Registry.
            url 'https://maven.pkg.github.com/Slyce-Inc/Slyce-Android-SDK'
            credentials {
                // EXAMPLE
                username = project.findProperty("gpr.user") ?: System.getenv("GPR_USER")
                password = project.findProperty("gpr.key") ?: System.getenv("GPR_API_KEY")
            }
        }
    }
}

A personal access token with read permissions on packages is required to download dependencies from the GPR. Please see the documentation on gradle integration.

Once the maven repo is set up you may add the Slyce SDK as a normal dependency in your application's build.gradle:

// Standard Slyce SDK
implementation 'it.slyce:slycesdk:5.13.2'

// Lite Version
implementation 'it.slyce:slycesdk-lite:5.13.2'

Copyright Slyce, Inc 2014-2019