https://github.com/johnjohndoe/sessionize
A Kotlin library containing a parser and models for the Sessionize API.
https://github.com/johnjohndoe/sessionize
api kotlin moshi okhttp parser retrofit sessionize
Last synced: about 1 year ago
JSON representation
A Kotlin library containing a parser and models for the Sessionize API.
- Host: GitHub
- URL: https://github.com/johnjohndoe/sessionize
- Owner: johnjohndoe
- License: apache-2.0
- Created: 2018-09-27T19:29:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-07-10T10:49:24.000Z (almost 5 years ago)
- Last Synced: 2025-02-14T04:18:21.804Z (over 1 year ago)
- Topics: api, kotlin, moshi, okhttp, parser, retrofit, sessionize
- Language: Kotlin
- Homepage: https://github.com/johnjohndoe/sessionize
- Size: 133 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[](https://travis-ci.com/johnjohndoe/sessionize) [](http://choosealicense.com/licenses/apache-2.0/) [][jitpack-sessionize]
# Sessionize library
A Kotlin library containing a parser and models for the Sessionize API:
* https://sessionize.com/api-documentation
### Gradle build
To deploy the library to your local Maven repository run the following task:
```bash
$ ./gradlew publishToMavenLocal
```
Then, to use the library in your project add the following to
your top level `build.gradle`:
```
allprojects {
repositories {
mavenLocal()
}
}
```
and to your application module `build.gradle`:
```groovy
dependencies {
compile "info.metadude.kotlin.library.sessionize:sessionize-base:$version"
}
```
Alternatively, you can use [JitPack][jitpack-sessionize] to fetch and
build the sources directly from this repository.
## Tests
Run the following command to execute all tests:
```groovy
$ ./gradlew clean test
```
## Author
* [Tobias Preuss][tobias-preuss]
## License
Copyright 2018-2019 Tobias Preuss
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
[jitpack-sessionize]: https://jitpack.io/#johnjohndoe/sessionize
[tobias-preuss]: https://github.com/johnjohndoe