Android 8.0 Bug Fix 3 Beta 2
Pre-release
Pre-release
davidgyoung
released this
14 Sep 12:08
·
533 commits
to master
since this release
Bug Fixes:
- Fix ConcurrentModifictionExceptions starting ScanJobs. (#584, #588 David G. Young)
- Fix NullPointerException when BluetoothLeScanner cannot be obtained.
(#583, David G. Young)
To use this release, you must download the aar file below, and configure it with your project like so:
- Edit your innermost build.gradle file to add the beta library AAR as a dependency like so:
dependencies {
compile 'android-beacon-library:2.12.3-beta2@aar'
}
-
Create a /libs folder next to the build.gradle above, then download and copy the the android-beacon-library-2.12.3-beta2.aar file below into this folder.
-
Configure your app's outermost build.gradle File to reference the /libs directory from above in a flatDir declaration:
allprojects {
repositories {
jcenter()
flatDir {
dirs 'libs'
}
}
}