Install the Android Beacon Library via Maven
masterTo use the Android Beacon Library in your Android project, add Maven Central to your repositories and include the library in your dependencies.
Note: By default, the library only detects beacons meeting the AltBeacon specification. For proprietary or custom beacons, use the BeaconParser class.
repositories {
mavenCentral()
}
dependencies {
implementation 'org.altbeacon:android-beacon-library:2.21.1'
}