Setup

Bridgefy SDK is available in our public repository. To install it you must follow the instructions:

val bridgefy_release_maven_url = "http://34.82.5.94:8081/artifactory/libs-release-local"

allprojects {
    repositories {
        maven {
            url = java.net.URI(bridgefy_release_maven_url)
            isAllowInsecureProtocol = true
        }
    }
}

In the app module build.gradle :

/**
 * Declare dependencies
 * @see http://www.gradle.org/docs/current/userguide/userguide_single.html#sec:how_to_declare_your_dependencies
 */
dependencies {
    implementation (group = "me.bridgefy", name = "android-sdk", version = "1.1.1", ext = "aar") {
        isTransitive = true
    }
}

Compatibility

Supported on Android 6 (minSdk = 23) and above with compileSdk >= 31

Last updated