Getting Started
Use these set up instructions to configure the Bringg Driver SDK for Android in your projects.
This version of Driver SDK for Android will be deprecated
The SDK is still active, however new functionality and bug fixes are no longer supported.
Stay tuned for the new version and documentation!
Configuration Steps
In your build.gradle
:
- Add the SDK as a dependency:
dependencies {
implementation 'com.bringg:driver_sdk:1.1.1'
}
- Add the Maven repository:
repositories {
maven { url 'https://oss.sonatype.org/content/groups/public' }
}
Next Steps
To use the Bringg Driver SDK for Android, you must first instantiate an instance of the BringgSDKClient. You can then use the Bringg Driver SDK for Android methods.
The Bringg Driver SDK for Android Uses Callback Interfaces
See Using Callback Interfaces for the syntax and examples.
Updated over 4 years ago