├── test.txt ├── Binaries ├── Chat.apk ├── BLESelect.apk ├── BLEController.apk └── SimpleControls.apk ├── Examples ├── Android Studio Examples │ ├── Chat │ │ ├── build │ │ │ ├── intermediates │ │ │ │ ├── incremental │ │ │ │ │ ├── aidl │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ └── dependency.store │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ └── dependency.store │ │ │ │ │ ├── mergeAssets │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ │ └── merger.xml │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ └── merger.xml │ │ │ │ │ └── mergeResources │ │ │ │ │ │ └── test │ │ │ │ │ │ └── debug │ │ │ │ │ │ └── merger.xml │ │ │ │ ├── model_data.bin │ │ │ │ ├── res │ │ │ │ │ └── debug │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── redbear.png │ │ │ │ │ │ ├── values-sw720dp-land-v13 │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-v11 │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-v14 │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── menu │ │ │ │ │ │ └── bletest.xml │ │ │ │ │ │ └── layout │ │ │ │ │ │ ├── device_list.xml │ │ │ │ │ │ ├── list_item.xml │ │ │ │ │ │ └── main.xml │ │ │ │ ├── pre-dexed │ │ │ │ │ └── debug │ │ │ │ │ │ └── android-support-v4-e86e8e37dd86f952c8316ee467d2d02e88c3b20a.jar │ │ │ │ ├── manifests │ │ │ │ │ └── test │ │ │ │ │ │ └── debug │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── dex-cache │ │ │ │ │ └── cache.xml │ │ │ ├── outputs │ │ │ │ └── apk │ │ │ │ │ ├── Chat-debug.apk │ │ │ │ │ └── Chat-debug-unaligned.apk │ │ │ └── generated │ │ │ │ └── source │ │ │ │ └── buildConfig │ │ │ │ ├── debug │ │ │ │ └── com │ │ │ │ │ └── redbear │ │ │ │ │ └── chat │ │ │ │ │ └── BuildConfig.java │ │ │ │ └── test │ │ │ │ └── debug │ │ │ │ └── com │ │ │ │ └── redbear │ │ │ │ └── chat │ │ │ │ └── test │ │ │ │ └── BuildConfig.java │ │ ├── .gradle │ │ │ └── 2.2.1 │ │ │ │ └── taskArtifacts │ │ │ │ ├── cache.properties │ │ │ │ ├── fileHashes.bin │ │ │ │ ├── fileSnapshots.bin │ │ │ │ ├── taskArtifacts.bin │ │ │ │ ├── cache.properties.lock │ │ │ │ └── outputFileStates.bin │ │ ├── ic_launcher-web.png │ │ ├── res │ │ │ ├── drawable │ │ │ │ ├── redbear.png │ │ │ │ └── red_button.xml │ │ │ ├── values-sw600dp │ │ │ │ └── dimens.xml │ │ │ ├── values │ │ │ │ ├── dimens.xml │ │ │ │ └── strings.xml │ │ │ ├── menu │ │ │ │ └── bletest.xml │ │ │ ├── values-sw720dp-land │ │ │ │ └── dimens.xml │ │ │ ├── values-v11 │ │ │ │ └── styles.xml │ │ │ ├── values-v14 │ │ │ │ └── styles.xml │ │ │ └── layout │ │ │ │ ├── device_list.xml │ │ │ │ ├── list_item.xml │ │ │ │ └── main.xml │ │ ├── libs │ │ │ └── android-support-v4.jar │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── project.properties │ │ ├── proguard-project.txt │ │ └── build.gradle │ ├── BLESelect │ │ ├── build │ │ │ ├── intermediates │ │ │ │ ├── incremental │ │ │ │ │ ├── aidl │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ └── dependency.store │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ └── dependency.store │ │ │ │ │ ├── mergeAssets │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ │ └── merger.xml │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ └── merger.xml │ │ │ │ │ └── mergeResources │ │ │ │ │ │ └── test │ │ │ │ │ │ └── debug │ │ │ │ │ │ └── merger.xml │ │ │ │ ├── model_data.bin │ │ │ │ ├── res │ │ │ │ │ └── debug │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── redbear.png │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-sw720dp-land-v13 │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-v11 │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-v14 │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── menu │ │ │ │ │ │ └── bleselect.xml │ │ │ │ │ │ └── layout │ │ │ │ │ │ ├── device_list.xml │ │ │ │ │ │ ├── title.xml │ │ │ │ │ │ └── list_item.xml │ │ │ │ ├── pre-dexed │ │ │ │ │ └── debug │ │ │ │ │ │ └── android-support-v4-0488db73d233cf09127c1db0e9775000b82e5434.jar │ │ │ │ ├── manifests │ │ │ │ │ └── test │ │ │ │ │ │ └── debug │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── dex-cache │ │ │ │ │ └── cache.xml │ │ │ ├── outputs │ │ │ │ └── apk │ │ │ │ │ ├── BLESelect-debug.apk │ │ │ │ │ └── BLESelect-debug-unaligned.apk │ │ │ └── generated │ │ │ │ └── source │ │ │ │ └── buildConfig │ │ │ │ ├── debug │ │ │ │ └── com │ │ │ │ │ └── redbear │ │ │ │ │ └── bleselect │ │ │ │ │ └── BuildConfig.java │ │ │ │ └── test │ │ │ │ └── debug │ │ │ │ └── com │ │ │ │ └── redbear │ │ │ │ └── bleselect │ │ │ │ └── test │ │ │ │ └── BuildConfig.java │ │ ├── .gradle │ │ │ └── 2.2.1 │ │ │ │ └── taskArtifacts │ │ │ │ ├── cache.properties.lock │ │ │ │ ├── cache.properties │ │ │ │ ├── fileHashes.bin │ │ │ │ ├── fileSnapshots.bin │ │ │ │ ├── taskArtifacts.bin │ │ │ │ └── outputFileStates.bin │ │ ├── ic_launcher-web.png │ │ ├── res │ │ │ ├── drawable │ │ │ │ ├── redbear.png │ │ │ │ └── red_button.xml │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.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 │ │ │ ├── menu │ │ │ │ └── bleselect.xml │ │ │ ├── values-sw720dp-land │ │ │ │ └── dimens.xml │ │ │ ├── values-v11 │ │ │ │ └── styles.xml │ │ │ ├── values-v14 │ │ │ │ └── styles.xml │ │ │ └── layout │ │ │ │ ├── device_list.xml │ │ │ │ ├── title.xml │ │ │ │ └── list_item.xml │ │ ├── libs │ │ │ └── android-support-v4.jar │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── project.properties │ │ ├── proguard-project.txt │ │ └── build.gradle │ ├── BLEController │ │ ├── build │ │ │ ├── intermediates │ │ │ │ ├── incremental │ │ │ │ │ ├── aidl │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ └── dependency.store │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ └── dependency.store │ │ │ │ │ ├── mergeAssets │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ │ └── merger.xml │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ └── merger.xml │ │ │ │ │ └── mergeResources │ │ │ │ │ │ └── test │ │ │ │ │ │ └── debug │ │ │ │ │ │ └── merger.xml │ │ │ │ ├── model_data.bin │ │ │ │ ├── res │ │ │ │ │ └── debug │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ ├── splash.jpg │ │ │ │ │ │ ├── add_icon.png │ │ │ │ │ │ ├── right_row.png │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ ├── remove_icon.png │ │ │ │ │ │ └── setting_icon.png │ │ │ │ │ │ ├── drawable-ldpi-v4 │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-v11 │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-v14 │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── activity_main_page.xml │ │ │ │ │ │ └── action_bar.xml │ │ │ │ │ │ ├── menu │ │ │ │ │ │ ├── activity_main_page.xml │ │ │ │ │ │ └── activity_standardview.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── button_selector.xml │ │ │ │ │ │ ├── mainpage_listview_item_bg.xml │ │ │ │ │ │ └── button_clicked.xml │ │ │ │ │ │ └── anim │ │ │ │ │ │ ├── slide_in_from_bottom.xml │ │ │ │ │ │ ├── slide_in_from_top.xml │ │ │ │ │ │ ├── slide_out_to_bottom.xml │ │ │ │ │ │ ├── slide_out_to_top.xml │ │ │ │ │ │ ├── slide_out_to_right.xml │ │ │ │ │ │ ├── slide_in_from_right.xml │ │ │ │ │ │ ├── slide_out_to_left.xml │ │ │ │ │ │ └── slide_in_from_left.xml │ │ │ │ ├── pre-dexed │ │ │ │ │ └── debug │ │ │ │ │ │ ├── android-support-v4-9f82e0ddaed439db97b72f78afadfa89d48c5906.jar │ │ │ │ │ │ └── nineoldandroids-2.4.0-6259de167fef15a1b68c0574aac529da7cd12f83.jar │ │ │ │ └── manifests │ │ │ │ │ └── test │ │ │ │ │ └── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── outputs │ │ │ │ └── apk │ │ │ │ │ ├── BLEController-debug.apk │ │ │ │ │ └── BLEController-debug-unaligned.apk │ │ │ └── generated │ │ │ │ └── source │ │ │ │ └── buildConfig │ │ │ │ ├── debug │ │ │ │ └── com │ │ │ │ │ └── redbear │ │ │ │ │ └── redbearbleclient │ │ │ │ │ └── BuildConfig.java │ │ │ │ └── test │ │ │ │ └── debug │ │ │ │ └── com │ │ │ │ └── redbear │ │ │ │ └── redbearbleclient │ │ │ │ └── test │ │ │ │ └── BuildConfig.java │ │ ├── .gradle │ │ │ └── 2.2.1 │ │ │ │ └── taskArtifacts │ │ │ │ ├── cache.properties │ │ │ │ ├── fileHashes.bin │ │ │ │ ├── fileSnapshots.bin │ │ │ │ ├── taskArtifacts.bin │ │ │ │ ├── cache.properties.lock │ │ │ │ └── outputFileStates.bin │ │ ├── ic_launcher-web.png │ │ ├── libs │ │ │ ├── android-support-v4.jar │ │ │ └── nineoldandroids-2.4.0.jar │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ ├── arrow.png │ │ │ │ ├── add_icon.png │ │ │ │ ├── splash.jpg │ │ │ │ ├── right_row.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── remove_icon.png │ │ │ │ └── setting_icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ ├── layout │ │ │ │ ├── activity_main_page.xml │ │ │ │ └── action_bar.xml │ │ │ ├── menu │ │ │ │ ├── activity_main_page.xml │ │ │ │ └── activity_standardview.xml │ │ │ ├── values-v11 │ │ │ │ └── styles.xml │ │ │ ├── drawable │ │ │ │ ├── button_selector.xml │ │ │ │ ├── mainpage_listview_item_bg.xml │ │ │ │ └── button_clicked.xml │ │ │ ├── values-v14 │ │ │ │ └── styles.xml │ │ │ └── anim │ │ │ │ ├── slide_in_from_bottom.xml │ │ │ │ ├── slide_in_from_top.xml │ │ │ │ ├── slide_out_to_bottom.xml │ │ │ │ ├── slide_out_to_top.xml │ │ │ │ ├── slide_out_to_right.xml │ │ │ │ ├── slide_in_from_right.xml │ │ │ │ ├── slide_out_to_left.xml │ │ │ │ └── slide_in_from_left.xml │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── lint.xml │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── src │ │ │ └── com │ │ │ │ └── redbear │ │ │ │ ├── redbearbleclient │ │ │ │ ├── data │ │ │ │ │ └── PinInfo.java │ │ │ │ ├── SplashScreen.java │ │ │ │ └── AddPage.java │ │ │ │ └── RedBearService │ │ │ │ └── IRedBearServiceEventListener.java │ │ ├── project.properties │ │ ├── proguard-project.txt │ │ └── build.gradle │ └── SimpleControls │ │ ├── build │ │ ├── intermediates │ │ │ ├── incremental │ │ │ │ ├── aidl │ │ │ │ │ ├── debug │ │ │ │ │ │ └── dependency.store │ │ │ │ │ └── test │ │ │ │ │ │ └── debug │ │ │ │ │ │ └── dependency.store │ │ │ │ ├── mergeAssets │ │ │ │ │ ├── test │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ └── merger.xml │ │ │ │ │ └── debug │ │ │ │ │ │ └── merger.xml │ │ │ │ └── mergeResources │ │ │ │ │ └── test │ │ │ │ │ └── debug │ │ │ │ │ └── merger.xml │ │ │ ├── model_data.bin │ │ │ ├── res │ │ │ │ └── debug │ │ │ │ │ ├── drawable │ │ │ │ │ ├── redbear.png │ │ │ │ │ ├── btn_toggle_no.png │ │ │ │ │ ├── btn_toggle_yes.png │ │ │ │ │ ├── btn_toggle.xml │ │ │ │ │ └── btn_toggle_bg.xml │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ ├── splash.jpg │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-sw720dp-land-v13 │ │ │ │ │ └── values.xml │ │ │ │ │ ├── values-v11 │ │ │ │ │ └── values.xml │ │ │ │ │ ├── values-v14 │ │ │ │ │ └── values.xml │ │ │ │ │ ├── menu │ │ │ │ │ └── simple_controls.xml │ │ │ │ │ └── layout │ │ │ │ │ └── title.xml │ │ │ ├── pre-dexed │ │ │ │ └── debug │ │ │ │ │ └── android-support-v4-6570c105ccf46cbb34139902a10a95285d2e5f7c.jar │ │ │ ├── manifests │ │ │ │ └── test │ │ │ │ │ └── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ └── dex-cache │ │ │ │ └── cache.xml │ │ ├── outputs │ │ │ └── apk │ │ │ │ ├── SimpleControls-debug.apk │ │ │ │ └── SimpleControls-debug-unaligned.apk │ │ └── generated │ │ │ └── source │ │ │ └── buildConfig │ │ │ ├── debug │ │ │ └── com │ │ │ │ └── redbear │ │ │ │ └── simplecontrols │ │ │ │ └── BuildConfig.java │ │ │ └── test │ │ │ └── debug │ │ │ └── com │ │ │ └── redbear │ │ │ └── simplecontrols │ │ │ └── test │ │ │ └── BuildConfig.java │ │ ├── .gradle │ │ └── 2.2.1 │ │ │ └── taskArtifacts │ │ │ ├── cache.properties │ │ │ ├── fileHashes.bin │ │ │ ├── fileSnapshots.bin │ │ │ ├── taskArtifacts.bin │ │ │ ├── cache.properties.lock │ │ │ └── outputFileStates.bin │ │ ├── ic_launcher-web.png │ │ ├── res │ │ ├── drawable │ │ │ ├── redbear.png │ │ │ ├── btn_toggle_no.png │ │ │ ├── btn_toggle_yes.png │ │ │ ├── btn_toggle.xml │ │ │ ├── btn_toggle_bg.xml │ │ │ └── red_button.xml │ │ ├── drawable-hdpi │ │ │ ├── splash.jpg │ │ │ └── ic_launcher.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 │ │ ├── menu │ │ │ └── simple_controls.xml │ │ ├── values-sw720dp-land │ │ │ └── dimens.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── layout │ │ │ └── title.xml │ │ ├── libs │ │ └── android-support-v4.jar │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── project.properties │ │ ├── proguard-project.txt │ │ ├── build.gradle │ │ └── AndroidManifest.xml ├── SimpleControls.TXT ├── Chat │ ├── ic_launcher-web.png │ ├── res │ │ ├── drawable │ │ │ ├── redbear.png │ │ │ └── red_button.xml │ │ ├── values-sw600dp │ │ │ └── dimens.xml │ │ ├── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── menu │ │ │ └── bletest.xml │ │ ├── values-sw720dp-land │ │ │ └── dimens.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── layout │ │ │ ├── device_list.xml │ │ │ ├── list_item.xml │ │ │ └── main.xml │ ├── libs │ │ └── android-support-v4.jar │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── project.properties │ └── proguard-project.txt ├── BLESelect │ ├── ic_launcher-web.png │ ├── res │ │ ├── drawable │ │ │ ├── redbear.png │ │ │ └── red_button.xml │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.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 │ │ ├── menu │ │ │ └── bleselect.xml │ │ ├── values-sw720dp-land │ │ │ └── dimens.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── layout │ │ │ ├── device_list.xml │ │ │ ├── title.xml │ │ │ └── list_item.xml │ ├── libs │ │ └── android-support-v4.jar │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── project.properties │ └── proguard-project.txt ├── BLEController │ ├── ic_launcher-web.png │ ├── libs │ │ ├── android-support-v4.jar │ │ └── nineoldandroids-2.4.0.jar │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── arrow.png │ │ │ ├── splash.jpg │ │ │ ├── add_icon.png │ │ │ ├── right_row.png │ │ │ ├── ic_launcher.png │ │ │ ├── remove_icon.png │ │ │ └── setting_icon.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ ├── layout │ │ │ ├── activity_main_page.xml │ │ │ └── action_bar.xml │ │ ├── menu │ │ │ ├── activity_main_page.xml │ │ │ └── activity_standardview.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── drawable │ │ │ ├── button_selector.xml │ │ │ ├── mainpage_listview_item_bg.xml │ │ │ └── button_clicked.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── anim │ │ │ ├── slide_in_from_bottom.xml │ │ │ ├── slide_out_to_bottom.xml │ │ │ ├── slide_out_to_top.xml │ │ │ ├── slide_in_from_top.xml │ │ │ ├── slide_in_from_right.xml │ │ │ ├── slide_out_to_right.xml │ │ │ ├── slide_in_from_left.xml │ │ │ └── slide_out_to_left.xml │ ├── lint.xml │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── src │ │ └── com │ │ │ └── redbear │ │ │ ├── redbearbleclient │ │ │ ├── data │ │ │ │ └── PinInfo.java │ │ │ ├── SplashScreen.java │ │ │ └── AddPage.java │ │ │ └── RedBearService │ │ │ └── IRedBearServiceEventListener.java │ ├── project.properties │ └── proguard-project.txt └── SimpleControls │ ├── ic_launcher-web.png │ ├── res │ ├── drawable │ │ ├── redbear.png │ │ ├── btn_toggle_no.png │ │ ├── btn_toggle_yes.png │ │ ├── btn_toggle.xml │ │ ├── btn_toggle_bg.xml │ │ └── red_button.xml │ ├── drawable-hdpi │ │ ├── splash.jpg │ │ └── ic_launcher.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 │ ├── menu │ │ └── simple_controls.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── layout │ │ └── title.xml │ ├── libs │ └── android-support-v4.jar │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── project.properties │ ├── proguard-project.txt │ └── AndroidManifest.xml └── .gitignore /test.txt: -------------------------------------------------------------------------------- 1 | jdksjakjsk 2 | -------------------------------------------------------------------------------- /Binaries/Chat.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Binaries/Chat.apk -------------------------------------------------------------------------------- /Binaries/BLESelect.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Binaries/BLESelect.apk -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/build/intermediates/incremental/aidl/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Binaries/BLEController.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Binaries/BLEController.apk -------------------------------------------------------------------------------- /Binaries/SimpleControls.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Binaries/SimpleControls.apk -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/intermediates/incremental/aidl/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/build/intermediates/incremental/aidl/test/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Examples/SimpleControls.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/SimpleControls.TXT -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/incremental/aidl/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/.gradle/2.2.1/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- 1 | 5:APs<#U -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/intermediates/incremental/aidl/test/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/incremental/aidl/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/incremental/aidl/test/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/.gradle/2.2.1/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Fri Oct 23 16:38:02 CST 2015 2 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/incremental/aidl/test/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/.gradle/2.2.1/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Fri Oct 23 16:35:53 CST 2015 2 | -------------------------------------------------------------------------------- /Examples/Chat/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Chat/ic_launcher-web.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/.gradle/2.2.1/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Fri Oct 23 16:32:51 CST 2015 2 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/.gradle/2.2.1/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Fri Oct 23 16:39:26 CST 2015 2 | -------------------------------------------------------------------------------- /Examples/BLESelect/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/BLESelect/ic_launcher-web.png -------------------------------------------------------------------------------- /Examples/Chat/res/drawable/redbear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Chat/res/drawable/redbear.png -------------------------------------------------------------------------------- /Examples/BLEController/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/BLEController/ic_launcher-web.png -------------------------------------------------------------------------------- /Examples/Chat/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Chat/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Examples/BLESelect/res/drawable/redbear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/BLESelect/res/drawable/redbear.png -------------------------------------------------------------------------------- /Examples/SimpleControls/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/SimpleControls/ic_launcher-web.png -------------------------------------------------------------------------------- /Examples/BLESelect/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/BLESelect/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Examples/SimpleControls/res/drawable/redbear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/SimpleControls/res/drawable/redbear.png -------------------------------------------------------------------------------- /Examples/BLEController/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/BLEController/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Examples/BLEController/res/drawable-hdpi/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/BLEController/res/drawable-hdpi/arrow.png -------------------------------------------------------------------------------- /Examples/BLEController/res/drawable-hdpi/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/BLEController/res/drawable-hdpi/splash.jpg -------------------------------------------------------------------------------- /Examples/BLESelect/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/BLESelect/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/BLESelect/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/BLESelect/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/SimpleControls/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/SimpleControls/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Examples/SimpleControls/res/drawable-hdpi/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/SimpleControls/res/drawable-hdpi/splash.jpg -------------------------------------------------------------------------------- /Examples/BLEController/libs/nineoldandroids-2.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/BLEController/libs/nineoldandroids-2.4.0.jar -------------------------------------------------------------------------------- /Examples/BLEController/res/drawable-hdpi/add_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/BLEController/res/drawable-hdpi/add_icon.png -------------------------------------------------------------------------------- /Examples/BLEController/res/drawable-hdpi/right_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/BLEController/res/drawable-hdpi/right_row.png -------------------------------------------------------------------------------- /Examples/BLESelect/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/BLESelect/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/BLESelect/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/BLESelect/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/SimpleControls/res/drawable/btn_toggle_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/SimpleControls/res/drawable/btn_toggle_no.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/Chat/ic_launcher-web.png -------------------------------------------------------------------------------- /Examples/BLEController/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/BLEController/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/BLEController/res/drawable-hdpi/remove_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/BLEController/res/drawable-hdpi/remove_icon.png -------------------------------------------------------------------------------- /Examples/BLEController/res/drawable-hdpi/setting_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/BLEController/res/drawable-hdpi/setting_icon.png -------------------------------------------------------------------------------- /Examples/BLEController/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/BLEController/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/BLEController/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/BLEController/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/BLEController/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/BLEController/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/SimpleControls/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/SimpleControls/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/SimpleControls/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/SimpleControls/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/SimpleControls/res/drawable/btn_toggle_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/SimpleControls/res/drawable/btn_toggle_yes.png -------------------------------------------------------------------------------- /Examples/SimpleControls/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/SimpleControls/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/SimpleControls/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/SimpleControls/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLESelect/ic_launcher-web.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/res/drawable/redbear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/Chat/res/drawable/redbear.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/ic_launcher-web.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/res/drawable/redbear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLESelect/res/drawable/redbear.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/Chat/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/ic_launcher-web.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLESelect/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/build/intermediates/model_data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/Chat/build/intermediates/model_data.bin -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/build/outputs/apk/Chat-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/Chat/build/outputs/apk/Chat-debug.apk -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/Chat/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/res/drawable/redbear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/res/drawable/redbear.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/res/drawable-hdpi/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/res/drawable-hdpi/arrow.png -------------------------------------------------------------------------------- /Examples/BLEController/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/libs/nineoldandroids-2.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/libs/nineoldandroids-2.4.0.jar -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/res/drawable-hdpi/add_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/res/drawable-hdpi/add_icon.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/res/drawable-hdpi/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/res/drawable-hdpi/splash.jpg -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/intermediates/model_data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLESelect/build/intermediates/model_data.bin -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLESelect/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLESelect/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLESelect/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLESelect/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/res/drawable-hdpi/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/res/drawable-hdpi/splash.jpg -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/res/drawable-hdpi/right_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/res/drawable-hdpi/right_row.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLESelect/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/res/drawable/btn_toggle_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/res/drawable/btn_toggle_no.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/res/drawable/btn_toggle_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/res/drawable/btn_toggle_yes.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/model_data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/build/intermediates/model_data.bin -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/res/drawable-hdpi/remove_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/res/drawable-hdpi/remove_icon.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/res/drawable-hdpi/setting_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/res/drawable-hdpi/setting_icon.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/outputs/apk/BLESelect-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLESelect/build/outputs/apk/BLESelect-debug.apk -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/.gradle/2.2.1/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/Chat/.gradle/2.2.1/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/build/outputs/apk/Chat-debug-unaligned.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/Chat/build/outputs/apk/Chat-debug-unaligned.apk -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/model_data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/build/intermediates/model_data.bin -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/Chat/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/Chat/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/.gradle/2.2.1/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLESelect/.gradle/2.2.1/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/.gradle/2.2.1/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/Chat/.gradle/2.2.1/taskArtifacts/cache.properties.lock -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/.gradle/2.2.1/taskArtifacts/outputFileStates.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/Chat/.gradle/2.2.1/taskArtifacts/outputFileStates.bin -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/.gradle/2.2.1/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/.gradle/2.2.1/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/outputs/apk/BLEController-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/build/outputs/apk/BLEController-debug.apk -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLESelect/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLESelect/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/build/intermediates/res/debug/drawable/redbear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/Chat/build/intermediates/res/debug/drawable/redbear.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/.gradle/2.2.1/taskArtifacts/outputFileStates.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLESelect/.gradle/2.2.1/taskArtifacts/outputFileStates.bin -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/outputs/apk/BLESelect-debug-unaligned.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLESelect/build/outputs/apk/BLESelect-debug-unaligned.apk -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/.gradle/2.2.1/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/.gradle/2.2.1/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/outputs/apk/SimpleControls-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/build/outputs/apk/SimpleControls-debug.apk -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/intermediates/res/debug/drawable/redbear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLESelect/build/intermediates/res/debug/drawable/redbear.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /Examples/Chat/.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 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/.gradle/2.2.1/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/.gradle/2.2.1/taskArtifacts/cache.properties.lock -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/.gradle/2.2.1/taskArtifacts/outputFileStates.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/.gradle/2.2.1/taskArtifacts/outputFileStates.bin -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/.gradle/2.2.1/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/.gradle/2.2.1/taskArtifacts/cache.properties.lock -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/.gradle/2.2.1/taskArtifacts/outputFileStates.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/.gradle/2.2.1/taskArtifacts/outputFileStates.bin -------------------------------------------------------------------------------- /Examples/BLEController/.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 | -------------------------------------------------------------------------------- /Examples/BLESelect/.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 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/outputs/apk/BLEController-debug-unaligned.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/build/outputs/apk/BLEController-debug-unaligned.apk -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/drawable/redbear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/drawable/redbear.png -------------------------------------------------------------------------------- /Examples/SimpleControls/.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 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/outputs/apk/SimpleControls-debug-unaligned.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/build/outputs/apk/SimpleControls-debug-unaligned.apk -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable-hdpi-v4/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable-hdpi-v4/arrow.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable-hdpi-v4/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable-hdpi-v4/splash.jpg -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/.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 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/drawable/btn_toggle_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/drawable/btn_toggle_no.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable-hdpi-v4/add_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable-hdpi-v4/add_icon.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable-hdpi-v4/right_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable-hdpi-v4/right_row.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/.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 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/intermediates/res/debug/drawable-hdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLESelect/build/intermediates/res/debug/drawable-hdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/intermediates/res/debug/drawable-mdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLESelect/build/intermediates/res/debug/drawable-mdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/intermediates/res/debug/drawable-xhdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLESelect/build/intermediates/res/debug/drawable-xhdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/intermediates/res/debug/drawable-xxhdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLESelect/build/intermediates/res/debug/drawable-xxhdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/drawable-hdpi-v4/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/drawable-hdpi-v4/splash.jpg -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/drawable/btn_toggle_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/drawable/btn_toggle_yes.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/.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 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable-hdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable-hdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable-hdpi-v4/remove_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable-hdpi-v4/remove_icon.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable-ldpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable-ldpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable-mdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable-mdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/.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 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable-hdpi-v4/setting_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable-hdpi-v4/setting_icon.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable-xhdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable-xhdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/drawable-hdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/drawable-hdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/drawable-mdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/drawable-mdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/drawable-xhdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/drawable-xhdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/drawable-xxhdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/drawable-xxhdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /Examples/Chat/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Examples/Chat/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /Examples/BLESelect/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Examples/BLESelect/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /Examples/Chat/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Chat 5 | Settings 6 | Searching.... 7 | 8 | 9 | -------------------------------------------------------------------------------- /Examples/SimpleControls/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Examples/SimpleControls/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Chat 5 | Settings 6 | Searching.... 7 | 8 | 9 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/build/intermediates/incremental/mergeAssets/test/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/build/intermediates/pre-dexed/debug/android-support-v4-e86e8e37dd86f952c8316ee467d2d02e88c3b20a.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/Chat/build/intermediates/pre-dexed/debug/android-support-v4-e86e8e37dd86f952c8316ee467d2d02e88c3b20a.jar -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/intermediates/incremental/mergeAssets/test/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/intermediates/pre-dexed/debug/android-support-v4-0488db73d233cf09127c1db0e9775000b82e5434.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLESelect/build/intermediates/pre-dexed/debug/android-support-v4-0488db73d233cf09127c1db0e9775000b82e5434.jar -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Oct 23 16:37:46 CST 2015 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-2.2.1-all.zip 7 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/incremental/mergeAssets/test/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Oct 23 16:32:26 CST 2015 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-2.2.1-all.zip 7 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Oct 23 16:35:42 CST 2015 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-2.2.1-all.zip 7 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/incremental/mergeAssets/test/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Examples/BLEController/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #ffffff 4 | #00000000 5 | #b89766 6 | #000000 7 | #33b6ea 8 | -------------------------------------------------------------------------------- /Examples/Chat/res/menu/bletest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/pre-dexed/debug/android-support-v4-9f82e0ddaed439db97b72f78afadfa89d48c5906.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/build/intermediates/pre-dexed/debug/android-support-v4-9f82e0ddaed439db97b72f78afadfa89d48c5906.jar -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/pre-dexed/debug/android-support-v4-6570c105ccf46cbb34139902a10a95285d2e5f7c.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/SimpleControls/build/intermediates/pre-dexed/debug/android-support-v4-6570c105ccf46cbb34139902a10a95285d2e5f7c.jar -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Oct 23 16:39:11 CST 2015 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-2.2.1-all.zip 7 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/pre-dexed/debug/nineoldandroids-2.4.0-6259de167fef15a1b68c0574aac529da7cd12f83.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedBearLab/Android/HEAD/Examples/Android Studio Examples/BLEController/build/intermediates/pre-dexed/debug/nineoldandroids-2.4.0-6259de167fef15a1b68c0574aac529da7cd12f83.jar -------------------------------------------------------------------------------- /Examples/BLESelect/res/menu/bleselect.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Examples/BLEController/src/com/redbear/redbearbleclient/data/PinInfo.java: -------------------------------------------------------------------------------- 1 | package com.redbear.redbearbleclient.data; 2 | 3 | /** 4 | * 5 | * Pin Info 6 | * 7 | * @author James 8 | * 9 | */ 10 | public class PinInfo { 11 | 12 | public int pin; 13 | public int[] modes; 14 | public int value; 15 | public int mode; 16 | 17 | } 18 | -------------------------------------------------------------------------------- /Examples/SimpleControls/res/drawable/btn_toggle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Examples/SimpleControls/res/menu/simple_controls.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #ffffff 4 | #00000000 5 | #b89766 6 | #000000 7 | #33b6ea 8 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/res/menu/bletest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Examples/Chat/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 128dp 8 | 9 | 10 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/src/com/redbear/redbearbleclient/data/PinInfo.java: -------------------------------------------------------------------------------- 1 | package com.redbear.redbearbleclient.data; 2 | 3 | /** 4 | * 5 | * Pin Info 6 | * 7 | * @author James 8 | * 9 | */ 10 | public class PinInfo { 11 | 12 | public int pin; 13 | public int[] modes; 14 | public int value; 15 | public int mode; 16 | 17 | } 18 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/res/menu/bleselect.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Examples/BLESelect/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 128dp 8 | 9 | 10 | -------------------------------------------------------------------------------- /Examples/SimpleControls/res/drawable/btn_toggle_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Examples/SimpleControls/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 128dp 8 | 9 | 10 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/res/drawable/btn_toggle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/res/menu/simple_controls.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Examples/BLEController/res/layout/activity_main_page.xml: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 128dp 8 | 9 | 10 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 128dp 8 | 9 | 10 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/build/intermediates/res/debug/values-sw720dp-land-v13/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 128dp 6 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/res/drawable/btn_toggle_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 128dp 8 | 9 | 10 | -------------------------------------------------------------------------------- /Examples/BLEController/res/menu/activity_main_page.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/res/layout/activity_main_page.xml: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/intermediates/res/debug/values-sw720dp-land-v13/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 128dp 6 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/values-sw720dp-land-v13/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 128dp 6 | -------------------------------------------------------------------------------- /Examples/BLEController/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/res/menu/activity_main_page.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Examples/BLEController/res/drawable/button_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Examples/Chat/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Examples/BLESelect/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Examples/SimpleControls/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/res/drawable/button_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/build/intermediates/incremental/mergeAssets/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/intermediates/incremental/mergeAssets/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/build/intermediates/res/debug/values-v11/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/incremental/mergeAssets/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/intermediates/res/debug/values-v11/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/values-v11/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/build/intermediates/res/debug/values-v14/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/incremental/mergeAssets/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/values-v11/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /Examples/BLEController/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # built application files 2 | #*.apk 3 | *.ap_ 4 | 5 | # files for the dex VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # generated files 12 | bin/ 13 | gen/ 14 | 15 | # Local configuration file (sdk path, etc) 16 | local.properties 17 | 18 | # Eclipse project files 19 | .classpath 20 | .project 21 | 22 | # Proguard folder generated by Eclipse 23 | proguard/ 24 | 25 | # Intellij project files 26 | *.iml 27 | *.ipr 28 | *.iws 29 | .idea/ 30 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/intermediates/res/debug/values-v14/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /Examples/Chat/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/values-v14/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /Examples/BLESelect/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Examples/BLESelect/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE Select 5 | Settings 6 | RedBearLab 7 | Last connected device: 8 | Connect Last Device 9 | Scan All 10 | 11 | 12 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/values-v14/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /Examples/SimpleControls/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /Examples/Chat/res/layout/device_list.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/build/intermediates/res/debug/menu/bletest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Examples/BLESelect/res/layout/device_list.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE Select 5 | Settings 6 | RedBearLab 7 | Last connected device: 8 | Connect Last Device 9 | Scan All 10 | 11 | 12 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/intermediates/res/debug/menu/bleselect.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/res/layout/device_list.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/res/layout/device_list.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/menu/simple_controls.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/drawable/btn_toggle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/drawable/btn_toggle_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Examples/BLEController/res/drawable/mainpage_listview_item_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 12 | 18 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/layout/activity_main_page.xml: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/build/intermediates/incremental/mergeResources/test/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/menu/activity_main_page.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/res/drawable/mainpage_listview_item_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 12 | 18 | -------------------------------------------------------------------------------- /Examples/SimpleControls/res/layout/title.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/intermediates/incremental/mergeResources/test/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/build/generated/source/buildConfig/debug/com/redbear/chat/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically generated file. DO NOT MODIFY 3 | */ 4 | package com.redbear.chat; 5 | 6 | public final class BuildConfig { 7 | public static final boolean DEBUG = Boolean.parseBoolean("true"); 8 | public static final String APPLICATION_ID = "com.redbear.chat"; 9 | public static final String BUILD_TYPE = "debug"; 10 | public static final String FLAVOR = ""; 11 | public static final int VERSION_CODE = 1; 12 | public static final String VERSION_NAME = ""; 13 | } 14 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable/button_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Examples/BLEController/src/com/redbear/RedBearService/IRedBearServiceEventListener.java: -------------------------------------------------------------------------------- 1 | package com.redbear.RedBearService; 2 | 3 | import android.os.ParcelUuid; 4 | 5 | public interface IRedBearServiceEventListener { 6 | void onDeviceFound(String deviceAddress, String name, int rssi, 7 | int bondState, byte[] scanRecord, ParcelUuid[] uuids); 8 | 9 | void onDeviceRssiUpdate(String deviceAddress, int rssi, int state); 10 | 11 | void onDeviceConnectStateChange(String deviceAddress, int state); 12 | 13 | void onDeviceReadValue(int[] value); 14 | 15 | void onDeviceCharacteristicFound(); 16 | } -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/incremental/mergeResources/test/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/incremental/mergeResources/test/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/res/layout/title.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/generated/source/buildConfig/debug/com/redbear/bleselect/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically generated file. DO NOT MODIFY 3 | */ 4 | package com.redbear.bleselect; 5 | 6 | public final class BuildConfig { 7 | public static final boolean DEBUG = Boolean.parseBoolean("true"); 8 | public static final String APPLICATION_ID = "com.redbear.bleselect"; 9 | public static final String BUILD_TYPE = "debug"; 10 | public static final String FLAVOR = ""; 11 | public static final int VERSION_CODE = 1; 12 | public static final String VERSION_NAME = ""; 13 | } 14 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/build/generated/source/buildConfig/test/debug/com/redbear/chat/test/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically generated file. DO NOT MODIFY 3 | */ 4 | package com.redbear.chat.test; 5 | 6 | public final class BuildConfig { 7 | public static final boolean DEBUG = Boolean.parseBoolean("true"); 8 | public static final String APPLICATION_ID = "com.redbear.chat.test"; 9 | public static final String BUILD_TYPE = "debug"; 10 | public static final String FLAVOR = ""; 11 | public static final int VERSION_CODE = -1; 12 | public static final String VERSION_NAME = ""; 13 | } 14 | -------------------------------------------------------------------------------- /Examples/BLESelect/res/layout/title.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/src/com/redbear/RedBearService/IRedBearServiceEventListener.java: -------------------------------------------------------------------------------- 1 | package com.redbear.RedBearService; 2 | 3 | import android.os.ParcelUuid; 4 | 5 | public interface IRedBearServiceEventListener { 6 | void onDeviceFound(String deviceAddress, String name, int rssi, 7 | int bondState, byte[] scanRecord, ParcelUuid[] uuids); 8 | 9 | void onDeviceRssiUpdate(String deviceAddress, int rssi, int state); 10 | 11 | void onDeviceConnectStateChange(String deviceAddress, int state); 12 | 13 | void onDeviceReadValue(int[] value); 14 | 15 | void onDeviceCharacteristicFound(); 16 | } -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/generated/source/buildConfig/test/debug/com/redbear/bleselect/test/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically generated file. DO NOT MODIFY 3 | */ 4 | package com.redbear.bleselect.test; 5 | 6 | public final class BuildConfig { 7 | public static final boolean DEBUG = Boolean.parseBoolean("true"); 8 | public static final String APPLICATION_ID = "com.redbear.bleselect.test"; 9 | public static final String BUILD_TYPE = "debug"; 10 | public static final String FLAVOR = ""; 11 | public static final int VERSION_CODE = -1; 12 | public static final String VERSION_NAME = ""; 13 | } 14 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/generated/source/buildConfig/debug/com/redbear/simplecontrols/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically generated file. DO NOT MODIFY 3 | */ 4 | package com.redbear.simplecontrols; 5 | 6 | public final class BuildConfig { 7 | public static final boolean DEBUG = Boolean.parseBoolean("true"); 8 | public static final String APPLICATION_ID = "com.redbear.simplecontrols"; 9 | public static final String BUILD_TYPE = "debug"; 10 | public static final String FLAVOR = ""; 11 | public static final int VERSION_CODE = 1; 12 | public static final String VERSION_NAME = ""; 13 | } 14 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/generated/source/buildConfig/debug/com/redbear/redbearbleclient/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically generated file. DO NOT MODIFY 3 | */ 4 | package com.redbear.redbearbleclient; 5 | 6 | public final class BuildConfig { 7 | public static final boolean DEBUG = Boolean.parseBoolean("true"); 8 | public static final String APPLICATION_ID = "com.redbear.redbearbleclient"; 9 | public static final String BUILD_TYPE = "debug"; 10 | public static final String FLAVOR = ""; 11 | public static final int VERSION_CODE = 1; 12 | public static final String VERSION_NAME = ""; 13 | } 14 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/res/layout/title.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Examples/BLEController/res/drawable/button_clicked.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 12 | 15 | 21 | 22 | -------------------------------------------------------------------------------- /Examples/BLEController/res/menu/activity_standardview.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 16 | 17 | -------------------------------------------------------------------------------- /Examples/Chat/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 | 13 | # Project target. 14 | target=android-19 15 | -------------------------------------------------------------------------------- /Examples/BLESelect/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 | 13 | # Project target. 14 | target=android-19 15 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/generated/source/buildConfig/test/debug/com/redbear/simplecontrols/test/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically generated file. DO NOT MODIFY 3 | */ 4 | package com.redbear.simplecontrols.test; 5 | 6 | public final class BuildConfig { 7 | public static final boolean DEBUG = Boolean.parseBoolean("true"); 8 | public static final String APPLICATION_ID = "com.redbear.simplecontrols.test"; 9 | public static final String BUILD_TYPE = "debug"; 10 | public static final String FLAVOR = ""; 11 | public static final int VERSION_CODE = -1; 12 | public static final String VERSION_NAME = ""; 13 | } 14 | -------------------------------------------------------------------------------- /Examples/BLEController/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 | 13 | # Project target. 14 | target=android-19 15 | -------------------------------------------------------------------------------- /Examples/SimpleControls/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 | 13 | # Project target. 14 | target=android-19 15 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/generated/source/buildConfig/test/debug/com/redbear/redbearbleclient/test/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically generated file. DO NOT MODIFY 3 | */ 4 | package com.redbear.redbearbleclient.test; 5 | 6 | public final class BuildConfig { 7 | public static final boolean DEBUG = Boolean.parseBoolean("true"); 8 | public static final String APPLICATION_ID = "com.redbear.redbearbleclient.test"; 9 | public static final String BUILD_TYPE = "debug"; 10 | public static final String FLAVOR = ""; 11 | public static final int VERSION_CODE = -1; 12 | public static final String VERSION_NAME = ""; 13 | } 14 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/build/intermediates/res/debug/layout/device_list.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/res/drawable/button_clicked.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 12 | 15 | 21 | 22 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/res/menu/activity_standardview.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 16 | 17 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/intermediates/res/debug/layout/device_list.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/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 | 13 | # Project target. 14 | target=android-19 15 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/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 | 13 | # Project target. 14 | target=android-19 15 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/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 | 13 | # Project target. 14 | target=android-19 15 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/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 | 13 | # Project target. 14 | target=android-19 15 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable/mainpage_listview_item_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 12 | 18 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/res/debug/layout/title.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/intermediates/res/debug/layout/title.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/build/intermediates/manifests/test/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 16 | 17 | -------------------------------------------------------------------------------- /Examples/BLEController/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /Examples/Chat/res/layout/list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 13 | 14 | 20 | 21 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/build/intermediates/manifests/test/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 16 | 17 | -------------------------------------------------------------------------------- /Examples/BLESelect/res/layout/list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 13 | 14 | 20 | 21 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/drawable/button_clicked.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 12 | 15 | 21 | 22 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/menu/activity_standardview.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 16 | 17 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/res/layout/list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 13 | 14 | 20 | 21 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/build/intermediates/manifests/test/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 16 | 17 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/build/intermediates/manifests/test/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 16 | 17 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/res/layout/list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 13 | 14 | 20 | 21 | -------------------------------------------------------------------------------- /Examples/BLEController/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 | -------------------------------------------------------------------------------- /Examples/Chat/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 | -------------------------------------------------------------------------------- /Examples/BLESelect/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 | -------------------------------------------------------------------------------- /Examples/SimpleControls/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 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLEController/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 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/Chat/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 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/BLESelect/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 | -------------------------------------------------------------------------------- /Examples/Android Studio Examples/SimpleControls/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 | -------------------------------------------------------------------------------- /Examples/Chat/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 14 | 15 |