├── 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 |
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 |
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 |
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 |
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 |
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 |
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 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/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 |
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 |
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 |
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 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/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 |
23 |
24 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/Chat/res/layout/main.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
14 |
15 |
23 |
24 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/Chat/build/intermediates/res/debug/layout/list_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
13 |
14 |
20 |
21 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLESelect/build/intermediates/res/debug/layout/list_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
13 |
14 |
20 |
21 |
--------------------------------------------------------------------------------
/Examples/BLEController/res/layout/action_bar.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
16 |
17 |
26 |
27 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLEController/res/layout/action_bar.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
16 |
17 |
26 |
27 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/Chat/build/intermediates/dex-cache/cache.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
9 |
10 |
11 | -
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/Chat/build/intermediates/res/debug/layout/main.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
14 |
15 |
23 |
24 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLESelect/build/intermediates/dex-cache/cache.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
9 |
10 |
11 | -
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/Examples/SimpleControls/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | BLE Demo - Simple Controls
5 | Settings
6 | RSSI
7 | ---
8 | Digital Out
9 | Digital In
10 | Pin
11 | [ 2 ]
12 | [ A4 ]
13 | [ 3 ]
14 | [ 5 ]
15 | [ A5 ]
16 | write
17 | read
18 | PWM
19 | Servo
20 | Analog In
21 | ----
22 | Connect
23 | Refreshing......
24 |
25 |
26 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/SimpleControls/build/intermediates/dex-cache/cache.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
9 |
10 |
11 | -
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/SimpleControls/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | BLE Demo - Simple Controls
5 | Settings
6 | RSSI
7 | ---
8 | Digital Out
9 | Digital In
10 | Pin
11 | [ 2 ]
12 | [ A4 ]
13 | [ 3 ]
14 | [ 5 ]
15 | [ A5 ]
16 | write
17 | read
18 | PWM
19 | Servo
20 | Analog In
21 | ----
22 | Connect
23 | Refreshing......
24 |
25 |
26 |
--------------------------------------------------------------------------------
/Examples/BLEController/src/com/redbear/redbearbleclient/SplashScreen.java:
--------------------------------------------------------------------------------
1 | package com.redbear.redbearbleclient;
2 |
3 | import android.app.Activity;
4 | import android.content.Intent;
5 | import android.os.Bundle;
6 | import android.view.KeyEvent;
7 |
8 | import com.redbear.redbearbleclient.view.LogoView;
9 |
10 | /**
11 | *
12 | *
13 | * SplashScreen
14 | *
15 | * @author James
16 | *
17 | */
18 | public class SplashScreen extends Activity {
19 |
20 | @Override
21 | protected void onCreate(Bundle savedInstanceState) {
22 | super.onCreate(savedInstanceState);
23 |
24 | LogoView mLogoView = new LogoView(this);
25 |
26 | setContentView(mLogoView);
27 |
28 | mLogoView.postDelayed(new Runnable() {
29 |
30 | @Override
31 | public void run() {
32 |
33 | Intent intent = new Intent(SplashScreen.this, MainPage.class);
34 | startActivity(intent);
35 | overridePendingTransition(android.R.anim.fade_in, android.R.anim.fade_out);
36 | finish();
37 | }
38 |
39 | }, 500);
40 | }
41 |
42 |
43 | @Override
44 | public boolean onKeyDown(int keyCode, KeyEvent event) {
45 | return true;
46 | }
47 |
48 | }
49 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLEController/src/com/redbear/redbearbleclient/SplashScreen.java:
--------------------------------------------------------------------------------
1 | package com.redbear.redbearbleclient;
2 |
3 | import android.app.Activity;
4 | import android.content.Intent;
5 | import android.os.Bundle;
6 | import android.view.KeyEvent;
7 |
8 | import com.redbear.redbearbleclient.view.LogoView;
9 |
10 | /**
11 | *
12 | *
13 | * SplashScreen
14 | *
15 | * @author James
16 | *
17 | */
18 | public class SplashScreen extends Activity {
19 |
20 | @Override
21 | protected void onCreate(Bundle savedInstanceState) {
22 | super.onCreate(savedInstanceState);
23 |
24 | LogoView mLogoView = new LogoView(this);
25 |
26 | setContentView(mLogoView);
27 |
28 | mLogoView.postDelayed(new Runnable() {
29 |
30 | @Override
31 | public void run() {
32 |
33 | Intent intent = new Intent(SplashScreen.this, MainPage.class);
34 | startActivity(intent);
35 | overridePendingTransition(android.R.anim.fade_in, android.R.anim.fade_out);
36 | finish();
37 | }
38 |
39 | }, 500);
40 | }
41 |
42 |
43 | @Override
44 | public boolean onKeyDown(int keyCode, KeyEvent event) {
45 | return true;
46 | }
47 |
48 | }
49 |
--------------------------------------------------------------------------------
/Examples/BLEController/res/anim/slide_in_from_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
--------------------------------------------------------------------------------
/Examples/BLEController/res/anim/slide_out_to_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
--------------------------------------------------------------------------------
/Examples/BLEController/res/anim/slide_out_to_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
27 |
--------------------------------------------------------------------------------
/Examples/BLEController/res/anim/slide_in_from_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
27 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/layout/action_bar.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
16 |
17 |
26 |
27 |
--------------------------------------------------------------------------------
/Examples/BLEController/res/anim/slide_in_from_right.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
--------------------------------------------------------------------------------
/Examples/BLEController/res/anim/slide_out_to_right.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
--------------------------------------------------------------------------------
/Examples/BLEController/res/anim/slide_in_from_left.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
27 |
--------------------------------------------------------------------------------
/Examples/BLEController/res/anim/slide_out_to_left.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
27 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLEController/res/anim/slide_in_from_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLEController/res/anim/slide_in_from_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
27 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLEController/res/anim/slide_out_to_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLEController/res/anim/slide_out_to_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
27 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLEController/res/anim/slide_out_to_right.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLEController/res/anim/slide_in_from_right.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLEController/res/anim/slide_out_to_left.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
27 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLEController/res/anim/slide_in_from_left.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
27 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/anim/slide_in_from_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/anim/slide_in_from_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
27 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/anim/slide_out_to_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/anim/slide_out_to_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
27 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/anim/slide_out_to_right.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/anim/slide_in_from_right.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/anim/slide_out_to_left.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
27 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLEController/build/intermediates/res/debug/anim/slide_in_from_left.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
24 |
26 |
27 |
--------------------------------------------------------------------------------
/Examples/BLESelect/res/drawable/red_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
6 |
7 |
8 |
10 |
11 |
14 |
15 |
17 |
18 |
23 |
24 |
25 |
26 | -
27 |
28 |
32 |
33 |
36 |
37 |
39 |
40 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/Examples/Chat/res/drawable/red_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
6 |
7 |
8 |
10 |
11 |
14 |
15 |
17 |
18 |
23 |
24 |
25 |
26 | -
27 |
28 |
32 |
33 |
36 |
37 |
39 |
40 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/Examples/SimpleControls/res/drawable/red_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
6 |
7 |
8 |
10 |
11 |
14 |
15 |
17 |
18 |
23 |
24 |
25 |
26 | -
27 |
28 |
32 |
33 |
36 |
37 |
39 |
40 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/Chat/build.gradle:
--------------------------------------------------------------------------------
1 | buildscript {
2 | repositories {
3 | mavenCentral()
4 | }
5 | dependencies {
6 | classpath 'com.android.tools.build:gradle:1.0.0'
7 | }
8 | }
9 | apply plugin: 'android'
10 |
11 | dependencies {
12 | compile fileTree(dir: 'libs', include: '*.jar')
13 | }
14 |
15 | android {
16 | compileSdkVersion 19
17 | buildToolsVersion "20.0.0"
18 |
19 | sourceSets {
20 | main {
21 | manifest.srcFile 'AndroidManifest.xml'
22 | java.srcDirs = ['src']
23 | resources.srcDirs = ['src']
24 | aidl.srcDirs = ['src']
25 | renderscript.srcDirs = ['src']
26 | res.srcDirs = ['res']
27 | assets.srcDirs = ['assets']
28 | }
29 |
30 | // Move the tests to tests/java, tests/res, etc...
31 | instrumentTest.setRoot('tests')
32 |
33 | // Move the build types to build-types/
34 | // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
35 | // This moves them out of them default location under src//... which would
36 | // conflict with src/ being used by the main source set.
37 | // Adding new build types or product flavors should be accompanied
38 | // by a similar customization.
39 | debug.setRoot('build-types/debug')
40 | release.setRoot('build-types/release')
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLESelect/build.gradle:
--------------------------------------------------------------------------------
1 | buildscript {
2 | repositories {
3 | mavenCentral()
4 | }
5 | dependencies {
6 | classpath 'com.android.tools.build:gradle:1.0.0'
7 | }
8 | }
9 | apply plugin: 'android'
10 |
11 | dependencies {
12 | compile fileTree(dir: 'libs', include: '*.jar')
13 | }
14 |
15 | android {
16 | compileSdkVersion 19
17 | buildToolsVersion "20.0.0"
18 |
19 | sourceSets {
20 | main {
21 | manifest.srcFile 'AndroidManifest.xml'
22 | java.srcDirs = ['src']
23 | resources.srcDirs = ['src']
24 | aidl.srcDirs = ['src']
25 | renderscript.srcDirs = ['src']
26 | res.srcDirs = ['res']
27 | assets.srcDirs = ['assets']
28 | }
29 |
30 | // Move the tests to tests/java, tests/res, etc...
31 | instrumentTest.setRoot('tests')
32 |
33 | // Move the build types to build-types/
34 | // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
35 | // This moves them out of them default location under src//... which would
36 | // conflict with src/ being used by the main source set.
37 | // Adding new build types or product flavors should be accompanied
38 | // by a similar customization.
39 | debug.setRoot('build-types/debug')
40 | release.setRoot('build-types/release')
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLEController/build.gradle:
--------------------------------------------------------------------------------
1 | buildscript {
2 | repositories {
3 | mavenCentral()
4 | }
5 | dependencies {
6 | classpath 'com.android.tools.build:gradle:1.0.0'
7 | }
8 | }
9 | apply plugin: 'android'
10 |
11 | dependencies {
12 | compile fileTree(dir: 'libs', include: '*.jar')
13 | }
14 |
15 | android {
16 | compileSdkVersion 19
17 | buildToolsVersion "20.0.0"
18 |
19 | sourceSets {
20 | main {
21 | manifest.srcFile 'AndroidManifest.xml'
22 | java.srcDirs = ['src']
23 | resources.srcDirs = ['src']
24 | aidl.srcDirs = ['src']
25 | renderscript.srcDirs = ['src']
26 | res.srcDirs = ['res']
27 | assets.srcDirs = ['assets']
28 | }
29 |
30 | // Move the tests to tests/java, tests/res, etc...
31 | instrumentTest.setRoot('tests')
32 |
33 | // Move the build types to build-types/
34 | // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
35 | // This moves them out of them default location under src//... which would
36 | // conflict with src/ being used by the main source set.
37 | // Adding new build types or product flavors should be accompanied
38 | // by a similar customization.
39 | debug.setRoot('build-types/debug')
40 | release.setRoot('build-types/release')
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLESelect/res/drawable/red_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
6 |
7 |
8 |
10 |
11 |
14 |
15 |
17 |
18 |
23 |
24 |
25 |
26 | -
27 |
28 |
32 |
33 |
36 |
37 |
39 |
40 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/Chat/res/drawable/red_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
6 |
7 |
8 |
10 |
11 |
14 |
15 |
17 |
18 |
23 |
24 |
25 |
26 | -
27 |
28 |
32 |
33 |
36 |
37 |
39 |
40 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/SimpleControls/build.gradle:
--------------------------------------------------------------------------------
1 | buildscript {
2 | repositories {
3 | mavenCentral()
4 | }
5 | dependencies {
6 | classpath 'com.android.tools.build:gradle:1.0.0'
7 | }
8 | }
9 | apply plugin: 'android'
10 |
11 | dependencies {
12 | compile fileTree(dir: 'libs', include: '*.jar')
13 | }
14 |
15 | android {
16 | compileSdkVersion 19
17 | buildToolsVersion "20.0.0"
18 |
19 | sourceSets {
20 | main {
21 | manifest.srcFile 'AndroidManifest.xml'
22 | java.srcDirs = ['src']
23 | resources.srcDirs = ['src']
24 | aidl.srcDirs = ['src']
25 | renderscript.srcDirs = ['src']
26 | res.srcDirs = ['res']
27 | assets.srcDirs = ['assets']
28 | }
29 |
30 | // Move the tests to tests/java, tests/res, etc...
31 | instrumentTest.setRoot('tests')
32 |
33 | // Move the build types to build-types/
34 | // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
35 | // This moves them out of them default location under src//... which would
36 | // conflict with src/ being used by the main source set.
37 | // Adding new build types or product flavors should be accompanied
38 | // by a similar customization.
39 | debug.setRoot('build-types/debug')
40 | release.setRoot('build-types/release')
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/SimpleControls/res/drawable/red_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
6 |
7 |
8 |
10 |
11 |
14 |
15 |
17 |
18 |
23 |
24 |
25 |
26 | -
27 |
28 |
32 |
33 |
36 |
37 |
39 |
40 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/Examples/SimpleControls/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
10 |
11 |
14 |
15 |
16 |
17 |
18 |
23 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
37 |
38 |
39 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/SimpleControls/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
10 |
11 |
14 |
15 |
16 |
17 |
18 |
23 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
37 |
38 |
39 |
--------------------------------------------------------------------------------
/Examples/BLEController/src/com/redbear/redbearbleclient/AddPage.java:
--------------------------------------------------------------------------------
1 | package com.redbear.redbearbleclient;
2 |
3 | import android.app.ActionBar;
4 | import android.app.Activity;
5 | import android.graphics.Color;
6 | import android.os.Bundle;
7 | import android.view.Gravity;
8 | import android.view.MenuItem;
9 | import android.widget.TextView;
10 |
11 |
12 | /**
13 | *
14 | *
15 | * Add Page
16 | *
17 | * @author James
18 | *
19 | */
20 | public class AddPage extends Activity {
21 |
22 | @Override
23 | protected void onCreate(Bundle savedInstanceState) {
24 | super.onCreate(savedInstanceState);
25 |
26 | TextView textView = new TextView(this);
27 |
28 | textView.setTextColor(Color.BLACK);
29 | textView.setGravity(Gravity.CENTER);
30 | textView.setTextSize(25);
31 | textView.setText("That is a AddPage page");
32 |
33 | setContentView(textView);
34 |
35 | final ActionBar actionBar = getActionBar();
36 | actionBar.setDisplayHomeAsUpEnabled(true);
37 |
38 | }
39 |
40 | @Override
41 | public void onBackPressed() {
42 |
43 | close();
44 |
45 | }
46 |
47 | protected void close()
48 | {
49 | finish();
50 | overridePendingTransition(R.anim.slide_in_from_left,
51 | R.anim.slide_out_to_right);
52 | }
53 |
54 | @Override
55 | public boolean onOptionsItemSelected(MenuItem item) {
56 | switch (item.getItemId()) {
57 | case android.R.id.home:
58 | close();
59 | default:
60 | return super.onOptionsItemSelected(item);
61 | }
62 | }
63 |
64 | }
65 |
--------------------------------------------------------------------------------
/Examples/Chat/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
14 |
15 |
16 |
19 |
20 |
34 |
35 |
--------------------------------------------------------------------------------
/Examples/Android Studio Examples/BLEController/src/com/redbear/redbearbleclient/AddPage.java:
--------------------------------------------------------------------------------
1 | package com.redbear.redbearbleclient;
2 |
3 | import android.app.ActionBar;
4 | import android.app.Activity;
5 | import android.graphics.Color;
6 | import android.os.Bundle;
7 | import android.view.Gravity;
8 | import android.view.MenuItem;
9 | import android.widget.TextView;
10 |
11 |
12 | /**
13 | *
14 | *
15 | * Add Page
16 | *
17 | * @author James
18 | *
19 | */
20 | public class AddPage extends Activity {
21 |
22 | @Override
23 | protected void onCreate(Bundle savedInstanceState) {
24 | super.onCreate(savedInstanceState);
25 |
26 | TextView textView = new TextView(this);
27 |
28 | textView.setTextColor(Color.BLACK);
29 | textView.setGravity(Gravity.CENTER);
30 | textView.setTextSize(25);
31 | textView.setText("That is a AddPage page");
32 |
33 | setContentView(textView);
34 |
35 | final ActionBar actionBar = getActionBar();
36 | actionBar.setDisplayHomeAsUpEnabled(true);
37 |
38 | }
39 |
40 | @Override
41 | public void onBackPressed() {
42 |
43 | close();
44 |
45 | }
46 |
47 | protected void close()
48 | {
49 | finish();
50 | overridePendingTransition(R.anim.slide_in_from_left,
51 | R.anim.slide_out_to_right);
52 | }
53 |
54 | @Override
55 | public boolean onOptionsItemSelected(MenuItem item) {
56 | switch (item.getItemId()) {
57 | case android.R.id.home:
58 | close();
59 | default:
60 | return super.onOptionsItemSelected(item);
61 | }
62 | }
63 |
64 | }
65 |
--------------------------------------------------------------------------------