├── AprilBeaconDemos ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── bin │ ├── AndroidManifest.xml │ ├── AprilBeaconDemo.apk │ ├── classes.dex │ ├── classes │ │ └── com │ │ │ └── aprilbrother │ │ │ └── aprilbeacondemo │ │ │ ├── BeaconAdapter$ViewHolder.class │ │ │ ├── BeaconAdapter.class │ │ │ ├── BeaconList$1.class │ │ │ ├── BeaconList$2.class │ │ │ ├── BeaconList$3.class │ │ │ ├── BeaconList$4.class │ │ │ ├── BeaconList$5.class │ │ │ ├── BeaconList$6.class │ │ │ ├── BeaconList.class │ │ │ ├── BuildConfig.class │ │ │ ├── ComparatorBeaconByRssi.class │ │ │ ├── ComparatorEddyStoneByRssi.class │ │ │ ├── EddyStoneAdapter$ViewHolder.class │ │ │ ├── EddyStoneAdapter.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 │ │ │ ├── EddyStoneScanActivity.class │ │ │ ├── ModifyActivity$1.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$10.class │ │ │ ├── ModifyActivity$11.class │ │ │ ├── ModifyActivity$2.class │ │ │ ├── ModifyActivity$3$1.class │ │ │ ├── ModifyActivity$3.class │ │ │ ├── ModifyActivity$4$1.class │ │ │ ├── ModifyActivity$4.class │ │ │ ├── ModifyActivity$5$1.class │ │ │ ├── ModifyActivity$5.class │ │ │ ├── ModifyActivity$6$1.class │ │ │ ├── ModifyActivity$6.class │ │ │ ├── ModifyActivity$7$1.class │ │ │ ├── ModifyActivity$7.class │ │ │ ├── ModifyActivity$8.class │ │ │ ├── ModifyActivity$9.class │ │ │ ├── ModifyActivity.class │ │ │ ├── NotificationUtils.class │ │ │ ├── NotifyInContentActivity$1.class │ │ │ ├── NotifyInContentActivity.class │ │ │ ├── NotifyOutContentActivity$1.class │ │ │ ├── NotifyOutContentActivity.class │ │ │ ├── NotifyService$1.class │ │ │ ├── NotifyService$2.class │ │ │ ├── NotifyService$CreateNotification.class │ │ │ ├── NotifyService.class │ │ │ ├── R$attr.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$menu.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R.class │ │ │ ├── RequestActivity.class │ │ │ ├── ResultActivity.class │ │ │ ├── SensorActivity$1.class │ │ │ ├── SensorActivity$2.class │ │ │ ├── SensorActivity.class │ │ │ └── ServiceStatusUtils.class │ ├── dexedLibs │ │ ├── ab-sdk-beta-reset-callback-1.5.2-53353401e2af7bde7b3d755ea2a9e85a.jar │ │ ├── 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 │ ├── jarlist.cache │ ├── proguard.txt │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ ├── aprilbeacon.png │ │ │ ├── beacon_gray.png │ │ │ ├── codeversed_logo.png │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ └── drawable-xxhdpi │ │ │ └── ic_launcher.png │ └── resources.ap_ ├── gen │ └── com │ │ └── aprilbrother │ │ └── aprilbeacondemo │ │ ├── BuildConfig.java │ │ └── R.java ├── ic_launcher-web.png ├── libs │ ├── ab-sdk-beta1.7.3.jar │ └── android-support-v4.jar ├── lint.xml ├── proguard-android.txt ├── proguard-project.txt ├── proguard │ ├── dump.txt │ ├── mapping.txt │ ├── seeds.txt │ └── usage.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── aprilbeacon.png │ │ ├── beacon_gray.png │ │ ├── codeversed_logo.png │ │ ├── ic_launcher.png │ │ ├── logowithname.png │ │ └── notifyout.jpg │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ ├── activity_eddystone_modify.xml │ │ ├── activity_eddystonescan.xml │ │ ├── activity_main.xml │ │ ├── activity_modify.xml │ │ ├── activity_notify_in_content.xml │ │ ├── activity_notify_out_content.xml │ │ ├── activity_request.xml │ │ ├── activity_sensor.xml │ │ ├── device_item.xml │ │ ├── devices_list_item.xml │ │ ├── dialog_text.xml │ │ └── notification_custom_remote.xml │ ├── menu │ │ └── main.xml │ ├── values-en │ │ └── strings.xml │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-zh │ │ └── strings.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── aprilbrother │ └── aprilbeacondemo │ ├── BeaconAdapter.java │ ├── BeaconList.java │ ├── ComparatorBeaconByRssi.java │ ├── ComparatorEddyStoneByRssi.java │ ├── EddyStoneAdapter.java │ ├── EddyStoneModifyActivity.java │ ├── EddyStoneScanActivity.java │ ├── ModifyActivity.java │ ├── NotificationUtils.java │ ├── NotifyInContentActivity.java │ ├── NotifyOutContentActivity.java │ ├── NotifyService.java │ ├── RequestActivity.java │ ├── ResultActivity.java │ ├── SensorActivity.java │ └── ServiceStatusUtils.java ├── AprilBeaconDemos_android_studio ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── libs │ │ └── ab-sdk-beta1.7.3.jar │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── aprbrother │ │ │ └── aprilbeacondemos │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── aprbrother │ │ │ │ └── aprilbeacondemos │ │ │ │ ├── BeaconAdapter.java │ │ │ │ ├── BeaconList.java │ │ │ │ ├── ComparatorBeaconByRssi.java │ │ │ │ ├── ComparatorEddyStoneByRssi.java │ │ │ │ ├── EddyStoneAdapter.java │ │ │ │ ├── EddyStoneModifyActivity.java │ │ │ │ ├── EddyStoneScanActivity.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── ModifyActivity.java │ │ │ │ ├── NotificationUtils.java │ │ │ │ ├── NotifyInContentActivity.java │ │ │ │ ├── NotifyOutContentActivity.java │ │ │ │ ├── NotifyService.java │ │ │ │ ├── RequestActivity.java │ │ │ │ ├── ResultActivity.java │ │ │ │ ├── SensorActivity.java │ │ │ │ └── ServiceStatusUtils.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── aprilbeacon.png │ │ │ ├── beacon_gray.png │ │ │ ├── codeversed_logo.png │ │ │ ├── ic_launcher.png │ │ │ ├── logowithname.png │ │ │ └── notifyout.jpg │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ ├── activity_eddystone_modify.xml │ │ │ ├── activity_eddystonescan.xml │ │ │ ├── activity_main.xml │ │ │ ├── activity_modify.xml │ │ │ ├── activity_notify_in_content.xml │ │ │ ├── activity_notify_out_content.xml │ │ │ ├── activity_request.xml │ │ │ ├── activity_sensor.xml │ │ │ ├── device_item.xml │ │ │ ├── devices_list_item.xml │ │ │ ├── dialog_text.xml │ │ │ └── notification_custom_remote.xml │ │ │ ├── menu │ │ │ └── main.xml │ │ │ ├── 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 │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-en │ │ │ └── strings.xml │ │ │ ├── values-sw600dp │ │ │ └── dimens.xml │ │ │ ├── values-sw720dp-land │ │ │ └── dimens.xml │ │ │ ├── values-v11 │ │ │ └── styles.xml │ │ │ ├── values-v14 │ │ │ └── styles.xml │ │ │ ├── values-zh │ │ │ └── strings.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── aprbrother │ │ └── aprilbeacondemos │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── AprilSDK ├── ab-sdk-beta1.7.3.jar └── aprilscansdk.jar ├── README.md ├── aprilscan ├── .gitignore ├── aprilscan.iml ├── build.gradle ├── libs │ └── aprilscansdk.jar ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── aprbrother │ │ └── aprilscan │ │ ├── BeaconAdapter.java │ │ ├── ComparatorBeaconByRssi.java │ │ ├── ComparatorEddyStoneByRssi.java │ │ ├── EddyStoneAdapter.java │ │ ├── EddyStoneScanActivity.java │ │ └── MainActivity.java │ └── res │ ├── layout │ ├── activity_eddystonescan.xml │ ├── activity_main.xml │ ├── device_item.xml │ └── devices_list_item.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 │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── proguard.jar /AprilBeaconDemos/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /AprilBeaconDemos/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | AprilBeaconDemo 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /AprilBeaconDemos/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /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/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 20 | 21 | 22 | 23 | 28 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 55 | 56 | 59 | 62 | 65 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 20 | 21 | 22 | 23 | 28 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 55 | 56 | 59 | 62 | 65 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/AprilBeaconDemo.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/AprilBeaconDemo.apk -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes.dex -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconAdapter$ViewHolder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconAdapter$ViewHolder.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconAdapter.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconList$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconList$6.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BeaconList.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/BuildConfig.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ComparatorBeaconByRssi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ComparatorBeaconByRssi.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ComparatorEddyStoneByRssi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ComparatorEddyStoneByRssi.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneAdapter$ViewHolder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneAdapter$ViewHolder.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneAdapter.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneModifyActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneScanActivity$3.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneScanActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/EddyStoneScanActivity.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$1.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$10$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$10$8.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$10.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$2.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$3$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$3$1.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$3.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$4$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$4$1.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$4.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$5$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$5$1.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$5.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$6$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$6$1.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$6.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$7$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$7$1.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity$9.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ModifyActivity.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotificationUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotificationUtils.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyInContentActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyInContentActivity.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyOutContentActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyOutContentActivity$1.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyOutContentActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyOutContentActivity.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyService$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyService$2.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyService$CreateNotification.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyService$CreateNotification.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/NotifyService.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$dimen.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$drawable.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$id.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$layout.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$menu.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$string.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R$style.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/R.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/RequestActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/RequestActivity.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ResultActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ResultActivity.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/SensorActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/SensorActivity$2.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/SensorActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/SensorActivity.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ServiceStatusUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/classes/com/aprilbrother/aprilbeacondemo/ServiceStatusUtils.class -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/dexedLibs/ab-sdk-beta-reset-callback-1.5.2-53353401e2af7bde7b3d755ea2a9e85a.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/dexedLibs/ab-sdk-beta-reset-callback-1.5.2-53353401e2af7bde7b3d755ea2a9e85a.jar -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/dexedLibs/ab-sdk-beta1.5.0-4ba6ef125984761558750ef1ef5d69a2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/dexedLibs/ab-sdk-beta1.7.2-a2f2ba0c5a112141cb50290f2328a2e7.jar -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/dexedLibs/android-support-v4-98f6e94ccff835e115b44b1b2b12a389.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/dexedLibs/android-support-v4-98f6e94ccff835e115b44b1b2b12a389.jar -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/dexedLibs/android-support-v4-b8181558d3968d84691852c500626205.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/dexedLibs/android-support-v4-b8181558d3968d84691852c500626205.jar -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/dexedLibs/libaprilbrothersdk1.0-8f5d62eb7b105921206cbe0a50707e4b.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/dexedLibs/libaprilbrothersdk1.0-8f5d62eb7b105921206cbe0a50707e4b.jar -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/proguard.txt: -------------------------------------------------------------------------------- 1 | # view AndroidManifest.xml #generated:28 2 | -keep class com.aprilbrother.aprilbeacondemo.BeaconList { (...); } 3 | 4 | # view AndroidManifest.xml #generated:47 5 | -keep class com.aprilbrother.aprilbeacondemo.EddyStoneModifyActivity { (...); } 6 | 7 | # view AndroidManifest.xml #generated:45 8 | -keep class com.aprilbrother.aprilbeacondemo.EddyStoneScanActivity { (...); } 9 | 10 | # view AndroidManifest.xml #generated:37 11 | -keep class com.aprilbrother.aprilbeacondemo.ModifyActivity { (...); } 12 | 13 | # view AndroidManifest.xml #generated:62 14 | -keep class com.aprilbrother.aprilbeacondemo.NotifyService { (...); } 15 | 16 | # view AndroidManifest.xml #generated:39 17 | -keep class com.aprilbrother.aprilbeacondemo.RequestActivity { (...); } 18 | 19 | # view AndroidManifest.xml #generated:41 20 | -keep class com.aprilbrother.aprilbeacondemo.ResultActivity { (...); } 21 | 22 | # view AndroidManifest.xml #generated:43 23 | -keep class com.aprilbrother.aprilbeacondemo.SensorActivity { (...); } 24 | 25 | # view AndroidManifest.xml #generated:52 26 | -keep class com.aprilbrother.aprilbrothersdk.service.BeaconService { (...); } 27 | 28 | # view AndroidManifest.xml #generated:56 29 | -keep class com.aprilbrother.aprilbrothersdk.services.ABeaconUartService { (...); } 30 | 31 | # view AndroidManifest.xml #generated:59 32 | -keep class com.aprilbrother.aprilbrothersdk.services.UartService { (...); } 33 | 34 | # onClick res/layout/activity_modify.xml #generated:303 35 | # onClick res/layout/activity_modify.xml #generated:337 36 | # onClick res/layout/activity_modify.xml #generated:371 37 | -keepclassmembers class * { *** getAdvinterval(...); } 38 | 39 | # onClick res/layout/activity_modify.xml #generated:235 40 | -keepclassmembers class * { *** getBattery(...); } 41 | 42 | # onClick res/layout/activity_modify.xml #generated:269 43 | -keepclassmembers class * { *** getTxPower(...); } 44 | 45 | # onClick res/layout/activity_modify.xml #generated:381 46 | -keepclassmembers class * { *** notify(...); } 47 | 48 | -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/res/crunch/drawable-hdpi/aprilbeacon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/res/crunch/drawable-hdpi/beacon_gray.png -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/res/crunch/drawable-hdpi/codeversed_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/res/crunch/drawable-hdpi/codeversed_logo.png -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/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/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/bin/resources.ap_ -------------------------------------------------------------------------------- /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/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/ic_launcher-web.png -------------------------------------------------------------------------------- /AprilBeaconDemos/libs/ab-sdk-beta1.7.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/libs/ab-sdk-beta1.7.3.jar -------------------------------------------------------------------------------- /AprilBeaconDemos/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/libs/android-support-v4.jar -------------------------------------------------------------------------------- /AprilBeaconDemos/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /AprilBeaconDemos/proguard-android.txt: -------------------------------------------------------------------------------- 1 | # This is a configuration file for ProGuard. 2 | # http://proguard.sourceforge.net/index.html#manual/usage.html 3 | 4 | -dontusemixedcaseclassnames 5 | -dontskipnonpubliclibraryclasses 6 | -verbose 7 | 8 | # Optimization is turned off by default. Dex does not like code run 9 | # through the ProGuard optimize and preverify steps (and performs some 10 | # of these optimizations on its own). 11 | -dontoptimize 12 | -dontpreverify 13 | # Note that if you want to enable optimization, you cannot just 14 | # include optimization flags in your own project configuration file; 15 | # instead you will need to point to the 16 | # "proguard-android-optimize.txt" file instead of this one from your 17 | # project.properties file. 18 | 19 | -keepattributes *Annotation* 20 | -keep public class com.google.vending.licensing.ILicensingService 21 | -keep public class com.android.vending.licensing.ILicensingService 22 | 23 | # For native methods, see http://proguard.sourceforge.net/manual/examples.html#native 24 | -keepclasseswithmembernames class * { 25 | native ; 26 | } 27 | 28 | # keep setters in Views so that animations can still work. 29 | # see http://proguard.sourceforge.net/manual/examples.html#beans 30 | -keepclassmembers public class * extends android.view.View { 31 | void set*(***); 32 | *** get*(); 33 | } 34 | 35 | # We want to keep methods in Activity that could be used in the XML attribute onClick 36 | -keepclassmembers class * extends android.app.Activity { 37 | public void *(android.view.View); 38 | } 39 | 40 | # For enumeration classes, see http://proguard.sourceforge.net/manual/examples.html#enumerations 41 | -keepclassmembers enum * { 42 | public static **[] values(); 43 | public static ** valueOf(java.lang.String); 44 | } 45 | 46 | -keep class * implements android.os.Parcelable { 47 | public static final android.os.Parcelable$Creator *; 48 | } 49 | 50 | -keepclassmembers class **.R$* { 51 | public static ; 52 | } 53 | 54 | # The support library contains references to newer platform versions. 55 | # Don't warn about those in case this app is linking against an older 56 | # platform version. We know about them, and they are safe. 57 | -dontwarn android.support.** 58 | 59 | -libraryjars libs/ab-sdk-beta1.6.1.jar 60 | -keep class com.aprilbrother.aprilbrothersdk.** 61 | -keep class com.aprilbrother.aprilbrothersdk.Utils{*;} 62 | -------------------------------------------------------------------------------- /AprilBeaconDemos/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /AprilBeaconDemos/proguard/dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/proguard/dump.txt -------------------------------------------------------------------------------- /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/drawable-hdpi/aprilbeacon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/res/drawable-hdpi/aprilbeacon.png -------------------------------------------------------------------------------- /AprilBeaconDemos/res/drawable-hdpi/beacon_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/res/drawable-hdpi/beacon_gray.png -------------------------------------------------------------------------------- /AprilBeaconDemos/res/drawable-hdpi/codeversed_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/res/drawable-hdpi/codeversed_logo.png -------------------------------------------------------------------------------- /AprilBeaconDemos/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos/res/drawable-hdpi/logowithname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/res/drawable-hdpi/logowithname.png -------------------------------------------------------------------------------- /AprilBeaconDemos/res/drawable-hdpi/notifyout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/res/drawable-hdpi/notifyout.jpg -------------------------------------------------------------------------------- /AprilBeaconDemos/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/AprilBeacon-Android-SDK/6130e5ecbc420831d7166f1564fb6199a6b12763/AprilBeaconDemos/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AprilBeaconDemos/res/layout/activity_eddystone_modify.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 15 | 16 | 27 | 28 | 39 | 40 | 51 | 52 | 63 | 64 | 75 | 76 | 82 | 83 | 95 | 96 | 102 | 103 | 115 | 116 | 121 | 122 | 133 | 134 | 139 | 140 | 151 | 152 | 153 | 154 | 155 | 156 | -------------------------------------------------------------------------------- /AprilBeaconDemos/res/layout/activity_eddystonescan.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 |