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
}
}
}
/**
* 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.2.3", ext = "aar") {
isTransitive = true
}
}