https://github.com/johnjohndoe/droidconberlin-base
A Kotlin library containing a parser and models for the Droidcon Berlin API.
https://github.com/johnjohndoe/droidconberlin-base
2018 api backend berlin berlindroid droidcon json kotlin library moshi parser retrofit wrapper
Last synced: 3 months ago
JSON representation
A Kotlin library containing a parser and models for the Droidcon Berlin API.
- Host: GitHub
- URL: https://github.com/johnjohndoe/droidconberlin-base
- Owner: johnjohndoe
- License: apache-2.0
- Created: 2018-06-23T10:19:24.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-26T22:20:38.000Z (over 7 years ago)
- Last Synced: 2025-04-08T05:51:20.752Z (6 months ago)
- Topics: 2018, api, backend, berlin, berlindroid, droidcon, json, kotlin, library, moshi, parser, retrofit, wrapper
- Language: Kotlin
- Homepage: https://github.com/johnjohndoe/droidconberlin-base
- Size: 78.1 KB
- Stars: 1
- 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.org/johnjohndoe/droidconberlin-base) [](https://bintray.com/tbsprs/maven/droidconberlin-base/_latestVersion) [](http://choosealicense.com/licenses/apache-2.0/) [][jitpack-droidconberlin-base]
# droidconberlin-base library

A Kotlin library containing a parser and models for the Droidcon Berlin API:
* https://cfp.droidcon.de/rest/sessions.json
* https://cfp.droidcon.de/rest/speakers.json // not yet implemented## 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 {
jcenter()
mavenLocal()
}
}
```and to your application module `build.gradle`:
```groovy
dependencies {
compile "info.metadude.kotlin.library.droidconberlin:droidconberlin-base:$version"
}
```Alternatively, you can use [JitPack][jitpack-droidconberlin-base] to fetch and
build the sources directly from this repository.## Tests
Run the following command to execute all tests:
```groovy
$ ./gradlew clean test
```## Which applications are using this library?
* Droidcon Berlin 2018 Schedule - [Google Play][droidcon-berlin-2018-schedule-google-play]
## Author
* [Tobias Preuss][tobias-preuss]
## License
Copyright 2018 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 athttp://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.[droidcon-berlin-2018-schedule-google-play]: https://play.google.com/store/apps/details?id=info.metadude.android.droidconberlin.schedule
[jitpack-droidconberlin-base]: https://jitpack.io/#johnjohndoe/droidconberlin-base
[tobias-preuss]: https://github.com/johnjohndoe