Skip to content
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.

Remove device and retry modules #44

Merged
merged 1 commit into from
Mar 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
steps:
- checkout
- restore_cache:
key: gradle-{{ checksum "settings.gradle" }}-{{ checksum "build.gradle" }}-{{ checksum "core/build.gradle" }}-{{ checksum "processor/build.gradle" }}-{{ checksum "retry/build.gradle" }}-{{ checksum "throw/build.gradle" }}-{{ checksum "timber-logger/build.gradle" }}
key: gradle-{{ checksum "settings.gradle" }}-{{ checksum "build.gradle" }}-{{ checksum "core/build.gradle" }}-{{ checksum "processor/build.gradle" }}-{{ checksum "throw/build.gradle" }}-{{ checksum "timber-logger/build.gradle" }}
- run:
name: Android Assemble, Check
command: >-
Expand All @@ -28,7 +28,7 @@ jobs:
- save_cache:
paths:
- ~/.gradle
key: gradle-{{ checksum "settings.gradle" }}-{{ checksum "build.gradle" }}-{{ checksum "core/build.gradle" }}-{{ checksum "processor/build.gradle" }}-{{ checksum "retry/build.gradle" }}-{{ checksum "throw/build.gradle" }}-{{ checksum "timber-logger/build.gradle" }}
key: gradle-{{ checksum "settings.gradle" }}-{{ checksum "build.gradle" }}-{{ checksum "core/build.gradle" }}-{{ checksum "processor/build.gradle" }}-{{ checksum "throw/build.gradle" }}-{{ checksum "timber-logger/build.gradle" }}
- run:
name: Codecov
command: bash <(curl -s https://codecov.io/bash) -t $CODECOV_TOKEN
Expand Down
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,10 +198,8 @@ dependencies {
| Package | Functionality |
|-------------------|-----------------------------------------------------------------------------------------------------------------|
| [`processor`] | A `Processor` adds the ability to process (and optionally modify) GATT data<br/>pre-write or post-read. |
| [`retry`] | `Retry` wraps a `Gatt` to add I/O retry functionality and on-demand connection<br/>establishment. |
| [`throw`] | Adds extension functions that `throw` exceptions on failures for various BLE<br/>operations. |
| [`timber-logger`] | Routes **Able** logging through [Timber](https://github.com/JakeWharton/timber). |
| [`device`] | Provides `BluetoothDevice` extension functions as a single access point for<br/>connectivity and communication. |

# License

Expand Down Expand Up @@ -234,7 +232,5 @@ limitations under the License.
[structured concurrency]: https://medium.com/@elizarov/structured-concurrency-722d765aa952
[`CoroutineScope`]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.experimental/-coroutine-scope/
[`processor`]: processor
[`retry`]: retry
[`throw`]: throw
[`timber-logger`]: timber-logger
[`device`]: device
2 changes: 0 additions & 2 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
fixes:
- "com/juul/able/experimental::"
- "com/juul/able/experimental/device::"
- "com/juul/able/experimental/processor::"
- "com/juul/able/experimental/retry::"
- "com/juul/able/experimental/throwable::"
- "com/juul/able/experimental/logger/timber::"
1 change: 0 additions & 1 deletion device/.gitignore

This file was deleted.

87 changes: 0 additions & 87 deletions device/README.md

This file was deleted.

29 changes: 0 additions & 29 deletions device/build.gradle

This file was deleted.

2 changes: 0 additions & 2 deletions device/gradle.properties

This file was deleted.

5 changes: 0 additions & 5 deletions device/src/main/AndroidManifest.xml

This file was deleted.

Loading