├── aprilscan ├── .gitignore ├── src │ └── main │ │ ├── res │ │ ├── values │ │ │ ├── strings.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ └── styles.xml │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ └── layout │ │ │ ├── activity_eddystonescan.xml │ │ │ ├── activity_main.xml │ │ │ ├── device_item.xml │ │ │ └── devices_list_item.xml │ │ ├── java │ │ └── com │ │ │ └── aprbrother │ │ │ └── aprilscan │ │ │ ├── ComparatorEddyStoneByRssi.java │ │ │ ├── ComparatorBeaconByRssi.java │ │ │ ├── EddyStoneScanActivity.java │ │ │ ├── EddyStoneAdapter.java │ │ │ ├── BeaconAdapter.java │ │ │ └── MainActivity.java │ │ └── AndroidManifest.xml ├── libs │ └── aprilscansdk.jar ├── proguard-rules.pro └── build.gradle ├── AprilBeaconDemos_android_studio ├── app │ ├── .gitignore │ ├── libs │ │ └── ab-sdk-beta1.7.3.jar │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── aprilbeacon.png │ │ │ │ │ ├── beacon_gray.png │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── notifyout.jpg │ │ │ │ │ ├── logowithname.png │ │ │ │ │ └── codeversed_logo.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-sw600dp │ │ │ │ │ └── dimens.xml │ │ │ │ ├── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── dimens.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── menu │ │ │ │ │ └── main.xml │ │ │ │ ├── values-sw720dp-land │ │ │ │ │ └── dimens.xml │ │ │ │ ├── values-v11 │ │ │ │ │ └── styles.xml │ │ │ │ ├── values-v14 │ │ │ │ │ └── styles.xml │ │ │ │ ├── layout │ │ │ │ │ ├── dialog_text.xml │ │ │ │ │ ├── activity_eddystonescan.xml │ │ │ │ │ ├── activity_request.xml │ │ │ │ │ ├── activity_notify_in_content.xml │ │ │ │ │ ├── notification_custom_remote.xml │ │ │ │ │ ├── activity_notify_out_content.xml │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ ├── device_item.xml │ │ │ │ │ ├── devices_list_item.xml │ │ │ │ │ └── activity_eddystone_modify.xml │ │ │ │ ├── values-zh │ │ │ │ │ └── strings.xml │ │ │ │ └── values-en │ │ │ │ │ └── strings.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── aprbrother │ │ │ │ │ └── aprilbeacondemos │ │ │ │ │ ├── ResultActivity.java │ │ │ │ │ ├── ComparatorEddyStoneByRssi.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── RequestActivity.java │ │ │ │ │ ├── ServiceStatusUtils.java │ │ │ │ │ ├── NotifyOutContentActivity.java │ │ │ │ │ ├── ComparatorBeaconByRssi.java │ │ │ │ │ ├── NotificationUtils.java │ │ │ │ │ ├── NotifyInContentActivity.java │ │ │ │ │ ├── EddyStoneScanActivity.java │ │ │ │ │ ├── EddyStoneAdapter.java │ │ │ │ │ ├── BeaconAdapter.java │ │ │ │ │ └── SensorActivity.java │ │ │ └── AndroidManifest.xml │ │ ├── test │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aprbrother │ │ │ │ └── aprilbeacondemos │ │ │ │ └── ExampleUnitTest.java │ │ └── androidTest │ │ │ └── java │ │ │ └── com │ │ │ └── aprbrother │ │ │ └── aprilbeacondemos │ │ │ └── ExampleInstrumentedTest.java │ ├── proguard-rules.pro │ └── build.gradle ├── settings.gradle ├── .idea │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── modules.xml │ ├── runConfigurations.xml │ ├── gradle.xml │ ├── compiler.xml │ └── misc.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore ├── build.gradle ├── gradle.properties ├── gradlew.bat └── gradlew ├── AprilBeaconDemos ├── lint.xml ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs ├── bin │ ├── classes.dex │ ├── resources.ap_ │ ├── AprilBeaconDemo.apk │ ├── jarlist.cache │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ ├── aprilbeacon.png │ │ │ ├── beacon_gray.png │ │ │ ├── ic_launcher.png │ │ │ └── codeversed_logo.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ └── drawable-xxhdpi │ │ │ └── ic_launcher.png │ ├── classes │ │ └── com │ │ │ └── aprilbrother │ │ │ └── aprilbeacondemo │ │ │ ├── R.class │ │ │ ├── R$id.class │ │ │ ├── R$attr.class │ │ │ ├── R$dimen.class │ │ │ ├── R$menu.class │ │ │ ├── R$style.class │ │ │ ├── BeaconList.class │ │ │ ├── R$drawable.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── BeaconList$1.class │ │ │ ├── BeaconList$2.class │ │ │ ├── BeaconList$3.class │ │ │ ├── BeaconList$4.class │ │ │ ├── BeaconList$5.class │ │ │ ├── BeaconList$6.class │ │ │ ├── BuildConfig.class │ │ │ ├── BeaconAdapter.class │ │ │ ├── ModifyActivity.class │ │ │ ├── NotifyService$1.class │ │ │ ├── NotifyService$2.class │ │ │ ├── NotifyService.class │ │ │ ├── RequestActivity.class │ │ │ ├── ResultActivity.class │ │ │ ├── SensorActivity.class │ │ │ ├── EddyStoneAdapter.class │ │ │ ├── ModifyActivity$1.class │ │ │ ├── ModifyActivity$10.class │ │ │ ├── ModifyActivity$11.class │ │ │ ├── ModifyActivity$2.class │ │ │ ├── ModifyActivity$3.class │ │ │ ├── ModifyActivity$4.class │ │ │ ├── ModifyActivity$5.class │ │ │ ├── ModifyActivity$6.class │ │ │ ├── ModifyActivity$7.class │ │ │ ├── ModifyActivity$8.class │ │ │ ├── ModifyActivity$9.class │ │ │ ├── NotificationUtils.class │ │ │ ├── SensorActivity$1.class │ │ │ ├── SensorActivity$2.class │ │ │ ├── ModifyActivity$10$1.class │ │ │ ├── ModifyActivity$10$2.class │ │ │ ├── ModifyActivity$10$3.class │ │ │ ├── ModifyActivity$10$4.class │ │ │ ├── ModifyActivity$10$5.class │ │ │ ├── ModifyActivity$10$6.class │ │ │ ├── ModifyActivity$10$7.class │ │ │ ├── ModifyActivity$10$8.class │ │ │ ├── ModifyActivity$3$1.class │ │ │ ├── ModifyActivity$4$1.class │ │ │ ├── ModifyActivity$5$1.class │ │ │ ├── ModifyActivity$6$1.class │ │ │ ├── ModifyActivity$7$1.class │ │ │ ├── ServiceStatusUtils.class │ │ │ ├── ComparatorBeaconByRssi.class │ │ │ ├── EddyStoneScanActivity.class │ │ │ ├── BeaconAdapter$ViewHolder.class │ │ │ ├── ComparatorEddyStoneByRssi.class │ │ │ ├── EddyStoneModifyActivity$1.class │ │ │ ├── EddyStoneModifyActivity$2.class │ │ │ ├── EddyStoneModifyActivity$3.class │ │ │ ├── EddyStoneModifyActivity$4.class │ │ │ ├── EddyStoneModifyActivity$5.class │ │ │ ├── EddyStoneModifyActivity.class │ │ │ ├── EddyStoneScanActivity$1.class │ │ │ ├── EddyStoneScanActivity$2.class │ │ │ ├── EddyStoneScanActivity$3.class │ │ │ ├── NotifyInContentActivity$1.class │ │ │ ├── NotifyInContentActivity.class │ │ │ ├── NotifyOutContentActivity.class │ │ │ ├── EddyStoneAdapter$ViewHolder.class │ │ │ ├── NotifyOutContentActivity$1.class │ │ │ └── NotifyService$CreateNotification.class │ ├── dexedLibs │ │ ├── ab-sdk-beta1.5.0-4ba6ef125984761558750ef1ef5d69a2.jar │ │ ├── ab-sdk-beta1.5.3-891237005ff565e713a3576ae75c90b6.jar │ │ ├── ab-sdk-beta1.5.4-dc269e51270d80967ee7125f10e577c4.jar │ │ ├── ab-sdk-beta1.6.2-e4d711cd01137aece4ade404c5a885fd.jar │ │ ├── ab-sdk-beta1.7.2-a2f2ba0c5a112141cb50290f2328a2e7.jar │ │ ├── android-support-v4-98f6e94ccff835e115b44b1b2b12a389.jar │ │ ├── android-support-v4-b8181558d3968d84691852c500626205.jar │ │ ├── libaprilbrothersdk1.0-8f5d62eb7b105921206cbe0a50707e4b.jar │ │ └── ab-sdk-beta-reset-callback-1.5.2-53353401e2af7bde7b3d755ea2a9e85a.jar │ ├── proguard.txt │ └── AndroidManifest.xml ├── proguard │ └── dump.txt ├── ic_launcher-web.png ├── libs │ ├── ab-sdk-beta1.7.3.jar │ └── android-support-v4.jar ├── res │ ├── drawable-hdpi │ │ ├── notifyout.jpg │ │ ├── aprilbeacon.png │ │ ├── beacon_gray.png │ │ ├── ic_launcher.png │ │ ├── logowithname.png │ │ └── codeversed_logo.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── menu │ │ └── main.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── layout │ │ ├── dialog_text.xml │ │ ├── activity_eddystonescan.xml │ │ ├── activity_request.xml │ │ ├── activity_notify_in_content.xml │ │ ├── notification_custom_remote.xml │ │ ├── activity_notify_out_content.xml │ │ ├── activity_main.xml │ │ ├── device_item.xml │ │ ├── devices_list_item.xml │ │ └── activity_eddystone_modify.xml │ ├── values-zh │ │ └── strings.xml │ └── values-en │ │ └── strings.xml ├── gen │ └── com │ │ └── aprilbrother │ │ └── aprilbeacondemo │ │ └── BuildConfig.java ├── src │ └── com │ │ └── aprilbrother │ │ └── aprilbeacondemo │ │ ├── ResultActivity.java │ │ ├── ComparatorEddyStoneByRssi.java │ │ ├── RequestActivity.java │ │ ├── ServiceStatusUtils.java │ │ ├── NotifyOutContentActivity.java │ │ ├── ComparatorBeaconByRssi.java │ │ ├── NotificationUtils.java │ │ ├── NotifyInContentActivity.java │ │ ├── EddyStoneAdapter.java │ │ ├── EddyStoneScanActivity.java │ │ ├── BeaconAdapter.java │ │ └── SensorActivity.java ├── .classpath ├── project.properties ├── proguard-project.txt ├── .project ├── proguard-android.txt └── AndroidManifest.xml ├── proguard.jar ├── AprilSDK ├── aprilscansdk.jar └── ab-sdk-beta1.7.3.jar └── README.md /aprilscan/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /AprilBeaconDemos/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /proguard.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/proguard.jar -------------------------------------------------------------------------------- /AprilBeaconDemos/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /AprilSDK/aprilscansdk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilSDK/aprilscansdk.jar -------------------------------------------------------------------------------- /aprilscan/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | AprilScan 3 | 4 | -------------------------------------------------------------------------------- /AprilSDK/ab-sdk-beta1.7.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilSDK/ab-sdk-beta1.7.3.jar -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes.dex -------------------------------------------------------------------------------- /aprilscan/libs/aprilscansdk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/aprilscan/libs/aprilscansdk.jar -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/resources.ap_ -------------------------------------------------------------------------------- /AprilBeaconDemos/proguard/dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/proguard/dump.txt -------------------------------------------------------------------------------- /AprilBeaconDemos/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/ic_launcher-web.png -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/AprilBeaconDemo.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/AprilBeaconDemo.apk -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /AprilBeaconDemos/libs/ab-sdk-beta1.7.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/libs/ab-sdk-beta1.7.3.jar -------------------------------------------------------------------------------- /AprilBeaconDemos/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/libs/android-support-v4.jar -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /AprilBeaconDemos/res/drawable-hdpi/notifyout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/res/drawable-hdpi/notifyout.jpg -------------------------------------------------------------------------------- /AprilBeaconDemos/res/drawable-hdpi/aprilbeacon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/res/drawable-hdpi/aprilbeacon.png -------------------------------------------------------------------------------- /AprilBeaconDemos/res/drawable-hdpi/beacon_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/res/drawable-hdpi/beacon_gray.png -------------------------------------------------------------------------------- /AprilBeaconDemos/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /aprilscan/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/aprilscan/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /aprilscan/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/aprilscan/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos/res/drawable-hdpi/logowithname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/res/drawable-hdpi/logowithname.png -------------------------------------------------------------------------------- /AprilBeaconDemos/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /aprilscan/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/aprilscan/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /aprilscan/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/aprilscan/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /aprilscan/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/aprilscan/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos/res/drawable-hdpi/codeversed_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/res/drawable-hdpi/codeversed_logo.png -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/res/crunch/drawable-hdpi/aprilbeacon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/res/crunch/drawable-hdpi/aprilbeacon.png -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/res/crunch/drawable-hdpi/beacon_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/res/crunch/drawable-hdpi/beacon_gray.png -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/libs/ab-sdk-beta1.7.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos_android_studio/app/libs/ab-sdk-beta1.7.3.jar -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/res/crunch/drawable-hdpi/codeversed_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/res/crunch/drawable-hdpi/codeversed_logo.png -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos_android_studio/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$id.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$attr.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$dimen.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$menu.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$style.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconList.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$drawable.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$layout.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$string.class -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/drawable-hdpi/aprilbeacon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos_android_studio/app/src/main/res/drawable-hdpi/aprilbeacon.png -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/drawable-hdpi/beacon_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos_android_studio/app/src/main/res/drawable-hdpi/beacon_gray.png -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos_android_studio/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/drawable-hdpi/notifyout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos_android_studio/app/src/main/res/drawable-hdpi/notifyout.jpg -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos_android_studio/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos_android_studio/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos_android_studio/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos_android_studio/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos_android_studio/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconList$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconList$1.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconList$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconList$2.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconList$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconList$3.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconList$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconList$4.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconList$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconList$5.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconList$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconList$6.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BuildConfig.class -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/drawable-hdpi/logowithname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos_android_studio/app/src/main/res/drawable-hdpi/logowithname.png -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos_android_studio/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos_android_studio/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos_android_studio/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconAdapter.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyService$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyService$1.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyService$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyService$2.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyService.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/RequestActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/RequestActivity.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ResultActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ResultActivity.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/SensorActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/SensorActivity.class -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/drawable-hdpi/codeversed_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos_android_studio/app/src/main/res/drawable-hdpi/codeversed_logo.png -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos_android_studio/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos_android_studio/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos_android_studio/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AprilBeaconDemos/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneAdapter.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$1.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$10.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$10.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$11.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$11.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$2.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$3.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$4.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$5.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$6.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$7.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$8.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$9.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotificationUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotificationUtils.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/SensorActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/SensorActivity$1.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/SensorActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/SensorActivity$2.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/dexedLibs/ab-sdk-beta1.5.0-4ba6ef125984761558750ef1ef5d69a2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/dexedLibs/ab-sdk-beta1.5.0-4ba6ef125984761558750ef1ef5d69a2.jar -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/dexedLibs/ab-sdk-beta1.5.3-891237005ff565e713a3576ae75c90b6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/dexedLibs/ab-sdk-beta1.5.3-891237005ff565e713a3576ae75c90b6.jar -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/dexedLibs/ab-sdk-beta1.5.4-dc269e51270d80967ee7125f10e577c4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/dexedLibs/ab-sdk-beta1.5.4-dc269e51270d80967ee7125f10e577c4.jar -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/dexedLibs/ab-sdk-beta1.6.2-e4d711cd01137aece4ade404c5a885fd.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/dexedLibs/ab-sdk-beta1.6.2-e4d711cd01137aece4ade404c5a885fd.jar -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/dexedLibs/ab-sdk-beta1.7.2-a2f2ba0c5a112141cb50290f2328a2e7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/dexedLibs/ab-sdk-beta1.7.2-a2f2ba0c5a112141cb50290f2328a2e7.jar -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos_android_studio/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos_android_studio/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$10$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$10$1.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$10$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$10$2.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$10$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$10$3.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$10$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$10$4.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$10$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$10$5.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$10$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$10$6.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$10$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$10$7.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$10$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$10$8.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$3$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$3$1.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$4$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$4$1.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$5$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$5$1.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$6$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$6$1.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$7$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$7$1.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ServiceStatusUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ServiceStatusUtils.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/dexedLibs/android-support-v4-98f6e94ccff835e115b44b1b2b12a389.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/dexedLibs/android-support-v4-98f6e94ccff835e115b44b1b2b12a389.jar -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/dexedLibs/android-support-v4-b8181558d3968d84691852c500626205.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/dexedLibs/android-support-v4-b8181558d3968d84691852c500626205.jar -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ComparatorBeaconByRssi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ComparatorBeaconByRssi.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneScanActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneScanActivity.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/dexedLibs/libaprilbrothersdk1.0-8f5d62eb7b105921206cbe0a50707e4b.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/dexedLibs/libaprilbrothersdk1.0-8f5d62eb7b105921206cbe0a50707e4b.jar -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconAdapter$ViewHolder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconAdapter$ViewHolder.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ComparatorEddyStoneByRssi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ComparatorEddyStoneByRssi.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneModifyActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneModifyActivity$1.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneModifyActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneModifyActivity$2.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneModifyActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneModifyActivity$3.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneModifyActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneModifyActivity$4.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneModifyActivity$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneModifyActivity$5.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneModifyActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneModifyActivity.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneScanActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneScanActivity$1.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneScanActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneScanActivity$2.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneScanActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneScanActivity$3.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyInContentActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyInContentActivity$1.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyInContentActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyInContentActivity.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyOutContentActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyOutContentActivity.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneAdapter$ViewHolder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneAdapter$ViewHolder.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyOutContentActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyOutContentActivity$1.class -------------------------------------------------------------------------------- /AprilBeaconDemos/gen/com/aprilbrother/aprilbeacondemo/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.aprilbrother.aprilbeacondemo; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyService$CreateNotification.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyService$CreateNotification.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/dexedLibs/ab-sdk-beta-reset-callback-1.5.2-53353401e2af7bde7b3d755ea2a9e85a.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/HEAD/AprilBeaconDemos/bin/dexedLibs/ab-sdk-beta-reset-callback-1.5.2-53353401e2af7bde7b3d755ea2a9e85a.jar -------------------------------------------------------------------------------- /AprilBeaconDemos/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | -------------------------------------------------------------------------------- /aprilscan/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /aprilscan/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /AprilBeaconDemos/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | -------------------------------------------------------------------------------- /AprilBeaconDemos/src/com/aprilbrother/aprilbeacondemo/ResultActivity.java: -------------------------------------------------------------------------------- 1 | package com.aprilbrother.aprilbeacondemo; 2 | 3 | import android.app.Activity; 4 | 5 | /** 6 | * User: stevealbright 7 | * Time: 9/10/13 @ 9:34 PM 8 | */ 9 | public class ResultActivity extends Activity { 10 | 11 | } 12 | -------------------------------------------------------------------------------- /AprilBeaconDemos/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Apr 06 09:51:33 CST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/java/com/aprbrother/aprilbeacondemos/ResultActivity.java: -------------------------------------------------------------------------------- 1 | package com.aprbrother.aprilbeacondemos; 2 | 3 | import android.app.Activity; 4 | 5 | /** 6 | * User: stevealbright 7 | * Time: 9/10/13 @ 9:34 PM 8 | */ 9 | public class ResultActivity extends Activity { 10 | 11 | } 12 | -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /AprilBeaconDemos/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 128dp 8 | 9 | -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 128dp 8 | 9 | -------------------------------------------------------------------------------- /AprilBeaconDemos/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /aprilscan/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /aprilscan/src/main/java/com/aprbrother/aprilscan/ComparatorEddyStoneByRssi.java: -------------------------------------------------------------------------------- 1 | package com.aprbrother.aprilscan; 2 | 3 | 4 | import com.aprbrother.aprilbeaconscansdk.EddyStone; 5 | 6 | import java.util.Comparator; 7 | 8 | 9 | 10 | public class ComparatorEddyStoneByRssi implements Comparator { 11 | 12 | @Override 13 | public int compare(EddyStone lhs, EddyStone rhs) { 14 | return rhs.getRssi() - lhs.getRssi(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /AprilBeaconDemos/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/java/com/aprbrother/aprilbeacondemos/ComparatorEddyStoneByRssi.java: -------------------------------------------------------------------------------- 1 | package com.aprbrother.aprilbeacondemos; 2 | 3 | import com.aprilbrother.aprilbrothersdk.EddyStone; 4 | 5 | import java.util.Comparator; 6 | 7 | 8 | public class ComparatorEddyStoneByRssi implements Comparator { 9 | 10 | @Override 11 | public int compare(EddyStone lhs, EddyStone rhs) { 12 | return rhs.getRssi() - lhs.getRssi(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /AprilBeaconDemos/src/com/aprilbrother/aprilbeacondemo/ComparatorEddyStoneByRssi.java: -------------------------------------------------------------------------------- 1 | package com.aprilbrother.aprilbeacondemo; 2 | 3 | import java.util.Comparator; 4 | 5 | import com.aprilbrother.aprilbrothersdk.Beacon; 6 | import com.aprilbrother.aprilbrothersdk.EddyStone; 7 | 8 | 9 | public class ComparatorEddyStoneByRssi implements Comparator { 10 | 11 | @Override 12 | public int compare(EddyStone lhs, EddyStone rhs) { 13 | return rhs.getRssi() - lhs.getRssi(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /aprilscan/src/main/res/layout/activity_eddystonescan.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /AprilBeaconDemos/res/layout/dialog_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 | -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/java/com/aprbrother/aprilbeacondemos/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.aprbrother.aprilbeacondemos; 2 | 3 | import android.os.Bundle; 4 | import android.support.v7.app.AppCompatActivity; 5 | 6 | import com.aprbrother.aprilbeacondemo.R; 7 | 8 | 9 | public class MainActivity extends AppCompatActivity { 10 | 11 | @Override 12 | protected void onCreate(Bundle savedInstanceState) { 13 | super.onCreate(savedInstanceState); 14 | setContentView(R.layout.activity_main); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/layout/dialog_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 | -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/test/java/com/aprbrother/aprilbeacondemos/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.aprbrother.aprilbeacondemos; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /AprilBeaconDemos/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /AprilBeaconDemos/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | AprilBeaconDemo 5 | Settings 6 | Hello world! 7 | Codeversed Logo 8 | Normal 9 | Big Text Style 10 | Big Picture Style 11 | Inbox Style 12 | Custom View 13 | -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.3.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /AprilBeaconDemos_android_studio/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | AprilBeaconDemo 5 | Settings 6 | Hello world! 7 | Codeversed Logo 8 | Normal 9 | Big Text Style 10 | Big Picture Style 11 | Inbox Style 12 | Custom View 13 | 14 | -------------------------------------------------------------------------------- /AprilBeaconDemos/src/com/aprilbrother/aprilbeacondemo/RequestActivity.java: -------------------------------------------------------------------------------- 1 | package com.aprilbrother.aprilbeacondemo; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | import android.widget.TextView; 6 | 7 | public class RequestActivity extends Activity { 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | setContentView(R.layout.activity_request); 11 | super.onCreate(savedInstanceState); 12 | init(); 13 | } 14 | 15 | private void init() { 16 | String string = getIntent().getExtras().getString("string"); 17 | 18 | TextView tv = (TextView) findViewById(R.id.tv_request); 19 | 20 | tv.setText(string); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /AprilBeaconDemos/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | proguard.config=proguard-android.txt 13 | # Project target. 14 | target=android-18 15 | -------------------------------------------------------------------------------- /AprilBeaconDemos/res/layout/activity_eddystonescan.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 |