KeenClient-Java
KeenClient-Java copied to clipboard
Official Java client for the Keen IO API. Build analytics features directly into your Java apps.
[Parallel builds](https://docs.gradle.org/current/userguide/multi_project_configuration_and_execution.html#sec:parallel_execution). This project contains multiple modules. Parallel builds can improve the build speed by executing tasks in parallel. We can enable this feature by setting `org.gradle.parallel=true`. [Configuration on demand](https://docs.gradle.org/current/userguide/multi_project_configuration_and_execution.html#sec:configuration_on_demand)....
About this: https://github.com/keenlabs/KeenClient-Java#gradle If I use this alone: ``` implementation 'io.keen:keen-client-api-android:5.6.0@aar' ``` It won't let me to use this line: ```kt val client = AndroidKeenClientBuilder(this).build() ``` I need to add...
Here: https://github.com/keenlabs/KeenClient-Java#jar-download The dead links are of this: > Core library - This only includes an abstract client, so you will have to provide your own concrete implementation; see JavaKeenClientBuilder...
The KeenClient-Java is missing the Extraction feature. Initially present, it was removed when refactoring Query client (https://github.com/keenlabs/KeenClient-Java/pull/52) back in July, 2015. Recently the feature was requested on slack (https://keen-community.slack.com/archives/C04AHUYLJ/p1530678148000123)
With the iOS SDK, I can create a custom logger and have Keen log all analytics events out through that. It would be nice to have that same functionality added...
Investigate what happens when trying to do an update of a Saved/Cached Query definition such that an element in a nested array is the target of the update. Filters, Funnel...
`KeenQueryClientException` seems to have been created as the exception that should be thrown out of `KeenQueryClient` and the comment says that even includes errors reported by the server: ```Exceptions thrown...
We should work on making it easier to do lower-level validation of HTTP requests in the query tests. `KeenQueryTestBase` might be a good place to share this functionality since this...
In order to deal with HTTP responses that can contain either a root JSON Object or a root JSON Array, at a low level we have to check the structure...