https://github.com/innofang/koolweather
π¦ Using Kotlin to build a weather app.
https://github.com/innofang/koolweather
app application kotlin weather-app weather-forecast
Last synced: 9 days ago
JSON representation
π¦ Using Kotlin to build a weather app.
- Host: GitHub
- URL: https://github.com/innofang/koolweather
- Owner: InnoFang
- License: apache-2.0
- Created: 2017-06-26T07:44:43.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-02-26T02:07:26.000Z (over 8 years ago)
- Last Synced: 2025-02-27T12:38:57.532Z (over 1 year ago)
- Topics: app, application, kotlin, weather-app, weather-forecast
- Language: Kotlin
- Homepage:
- Size: 536 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# KoolWeather
English | [δΈζ](https://github.com/InnoFang/KoolWeather/blob/master/README_zh.md)

Using Kotlin to build weather app.
>Thanks for the [API](https://github.com/InnoFang/KoolWeather/blob/master/app/src/main/java/io/innofang/koolweather/constant/Api.kt) provided by [guolindev](http://guolin.tech)
In this porject, I just use the Kotlin (without using Anko) to rebuild the [CoolWeather](https://github.com/guolindev/coolweather), moreover I don't use the [LitePal](https://github.com/LitePalFramework/LitePal) (a third-party Database library) but use the SQLite to store my local data , which will allow you to learn how to use kotlin to access SQLite. On the other hand, I demonstrated the basic usage of Kotlin and some tips. If you have a better suggestion welcome to pull request or issur for me.
# Third-party library
```gradle
compile 'com.google.code.gson:gson:2.2.4'
compile 'com.squareup.okhttp3:okhttp:3.8.1'
compile 'com.github.bumptech.glide:glide:4.0.0-RC1'
```
# Reference
+ [CoolWeather](https://github.com/guolindev/coolweather)
+ [Kotlin-for-Android-Developers](https://github.com/antoniolg/Kotlin-for-Android-Developers)
# [License](https://github.com/InnoFang/KoolWeather/blob/master/LICENSE)
```
Copyright 2017 InnoFang
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.
```