Skip to content

Adhoc release: Fix Power Saver Crash

Pre-release
Pre-release
Compare
Choose a tag to compare
@davidgyoung davidgyoung released this 02 Mar 05:05

Adhoc release intended to test fixing a crash in the Background Power Saver.

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

  • Create a /libs directory inside your project and copy the android-beacon-library.aar file there.
  • 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'
              }
          }
      }
  • Add the library AAR as a dependency, along with the Android Beacon Library like so:
      dependencies {
        compile 'org.altbeacon:android-beacon-library-2.9.2-5-gd971e20@aar'
      }