Test build for Android 8.1 scanning with screen off
Pre-release
Pre-release
This build is intended for testing on projects using Android 8.1 scanning with the screen off.
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.12.4-2-gca0c23c@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'
}
}
}