├── .gitattributes ├── .gitignore ├── .gradle └── 2.4 │ └── taskArtifacts │ ├── cache.properties │ ├── cache.properties.lock │ ├── fileHashes.bin │ ├── fileSnapshots.bin │ ├── outputFileStates.bin │ └── taskArtifacts.bin ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── libraries │ ├── support_annotations_23_0_0.xml │ └── support_v4_23_0_0.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── app.iml ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── nordicsemi │ │ └── nrfUARTv2 │ │ ├── DeviceListActivity.java │ │ ├── MainActivity.java │ │ └── UartService.java │ └── res │ ├── drawable-hdpi │ └── nrfuart_hdpi_icon.png │ ├── layout │ ├── device_element.xml │ ├── device_list.xml │ ├── dis_values.xml │ ├── main.xml │ ├── message_detail.xml │ └── title_bar.xml │ └── values │ ├── strings.xml │ └── styles.xml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── import-summary.txt ├── local.properties ├── nRFUART_GoogleAPI_Android4.3+.iml └── settings.gradle /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/.gitignore -------------------------------------------------------------------------------- /.gradle/2.4/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Tue Sep 01 14:08:01 CEST 2015 2 | -------------------------------------------------------------------------------- /.gradle/2.4/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/.gradle/2.4/taskArtifacts/cache.properties.lock -------------------------------------------------------------------------------- /.gradle/2.4/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/.gradle/2.4/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /.gradle/2.4/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/.gradle/2.4/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /.gradle/2.4/taskArtifacts/outputFileStates.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/.gradle/2.4/taskArtifacts/outputFileStates.bin -------------------------------------------------------------------------------- /.gradle/2.4/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/.gradle/2.4/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | nRFUART_GoogleAPI_Android4.3+ -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/libraries/support_annotations_23_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/.idea/libraries/support_annotations_23_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_v4_23_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/.idea/libraries/support_v4_23_0_0.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/nordicsemi/nrfUARTv2/DeviceListActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/app/src/main/java/com/nordicsemi/nrfUARTv2/DeviceListActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/nordicsemi/nrfUARTv2/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/app/src/main/java/com/nordicsemi/nrfUARTv2/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/nordicsemi/nrfUARTv2/UartService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/app/src/main/java/com/nordicsemi/nrfUARTv2/UartService.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/nrfuart_hdpi_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/app/src/main/res/drawable-hdpi/nrfuart_hdpi_icon.png -------------------------------------------------------------------------------- /app/src/main/res/layout/device_element.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/app/src/main/res/layout/device_element.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/device_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/app/src/main/res/layout/device_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dis_values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/app/src/main/res/layout/dis_values.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/app/src/main/res/layout/main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/message_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/app/src/main/res/layout/message_detail.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/title_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/app/src/main/res/layout/title_bar.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/gradlew.bat -------------------------------------------------------------------------------- /import-summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/import-summary.txt -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/local.properties -------------------------------------------------------------------------------- /nRFUART_GoogleAPI_Android4.3+.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/Android-nRF-UART/HEAD/nRFUART_GoogleAPI_Android4.3+.iml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------