Skip to content

Bug fix release with experimental thread leak prevention

Pre-release
Pre-release
Compare
Choose a tag to compare
@davidgyoung davidgyoung released this 24 Nov 22:47
· 316 commits to master since this release

This release adds more changes to help make repeatedly stopping and starting a foreground service more reliable.

To use this release, you must download the aar file attached to this release, and configure it with your project like so:

  • Edit your outermost build.gradle file to add an libs entry like so:
     allprojects {
         repositories {
             google()
             jcenter()
             flatDir {
                 dirs 'src/main/libs'
             }
         }
     }
  • Edit your innermost build.gradle file to add the beta library AAR as a dependency like so:
dependencies {
  compile 'android-beacon-library-2.15.3-beta1@aar'
}
  • Create a /libs folder next to the build.gradle above, then download and copy the aar file attached to this release into this folder.