android-beacon-library v2.16.3-beta1 Release Notes

Release Date: 2019-06-05 // almost 5 years ago
  • ๐Ÿš€ None of these crashes have instructions to reproduce, so this release is intended to deploy the fixes in the wild to see if reports of these crashes go away.

    ๐Ÿš€ 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 'libs'
               }
           }
       }
      
    • ๐Ÿ— Edit your innermost build.gradle file to add the beta library AAR as a dependency like so:

      dependencies { implementation 'org.altbeacon:android-beacon-library:2.16.3-beta1@aar' }

    • ๐Ÿš€ Create a /libs folder next to the innermost build.gradle above, then download and copy the aar file attached to this release into this folder.