Skip to content

Test Build: Performance Improvements for 3-15 byte identifiers

Pre-release
Pre-release
Compare
Choose a tag to compare

This build is intended for testing on projects using beacon layouts with identifiers between 3 and 15 bytes in length.

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-1-gcc797f3.aar'
      }
  • Create a /libs folder next to the build.gradle above, then download and copy the 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'
              }
          }
      }