android-beacon-library v2.15.5 Release Notes

Release Date: 2018-12-20 // over 5 years ago
  • ๐Ÿš€ This release fixes a logic problem preventing proper service shutdown.

    ๐Ÿš€ 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.5-alpha1@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.