Skip to content

Fix scan failure on Samsung devices with 5.x

Pre-release
Pre-release
Compare
Choose a tag to compare
@davidgyoung davidgyoung released this 01 Jun 17:50
· 410 commits to master since this release

This is a test release intended to fix the issue reported in #691

To use this release, you must download the aar file attached to this release, 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.14.1-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.

  • 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'
              }
          }
      }