├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── libraries │ ├── animated_vector_drawable_23_4_0.xml │ ├── appcompat_v7_23_4_0.xml │ ├── converter_gson_2_0_0_beta2.xml │ ├── espresso_core_2_2_2.xml │ ├── espresso_idling_resource_2_2_2.xml │ ├── exposed_instrumentation_api_publish_0_5.xml │ ├── gson_2_3_1.xml │ ├── hamcrest_core_1_3.xml │ ├── hamcrest_integration_1_3.xml │ ├── hamcrest_library_1_3.xml │ ├── javawriter_2_1_1.xml │ ├── javax_annotation_api_1_2.xml │ ├── javax_inject_1.xml │ ├── jsr305_2_0_1.xml │ ├── junit_4_12.xml │ ├── okhttp_2_5_0.xml │ ├── okio_1_6_0.xml │ ├── retrofit_2_0_0_beta2.xml │ ├── rules_0_5.xml │ ├── runner_0_5.xml │ ├── support_annotations_23_4_0.xml │ ├── support_v4_23_4_0.xml │ └── support_vector_drawable_23_4_0.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── OWApi ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── az │ │ └── openweatherapi │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── az │ │ │ └── openweatherapi │ │ │ ├── OWService.java │ │ │ ├── OpenWeatherAPI.java │ │ │ ├── listener │ │ │ └── OWRequestListener.java │ │ │ ├── model │ │ │ ├── OWResponse.java │ │ │ └── gson │ │ │ │ ├── common │ │ │ │ ├── City.java │ │ │ │ ├── Clouds.java │ │ │ │ ├── Coord.java │ │ │ │ ├── Main.java │ │ │ │ ├── Rain.java │ │ │ │ ├── Weather.java │ │ │ │ └── Wind.java │ │ │ │ ├── current_day │ │ │ │ ├── CurrentWeather.java │ │ │ │ ├── Main.java │ │ │ │ ├── Sys.java │ │ │ │ └── Weather.java │ │ │ │ └── five_day │ │ │ │ ├── ExtendedWeather.java │ │ │ │ ├── Sys.java │ │ │ │ ├── Sys_.java │ │ │ │ └── WeatherForecastElement.java │ │ │ └── utils │ │ │ ├── OWSupportedLanguages.java │ │ │ └── OWSupportedUnits.java │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── az │ └── openweatherapi │ └── ExampleUnitTest.java ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/libraries/animated_vector_drawable_23_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/animated_vector_drawable_23_4_0.xml -------------------------------------------------------------------------------- /.idea/libraries/appcompat_v7_23_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/appcompat_v7_23_4_0.xml -------------------------------------------------------------------------------- /.idea/libraries/converter_gson_2_0_0_beta2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/converter_gson_2_0_0_beta2.xml -------------------------------------------------------------------------------- /.idea/libraries/espresso_core_2_2_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/espresso_core_2_2_2.xml -------------------------------------------------------------------------------- /.idea/libraries/espresso_idling_resource_2_2_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/espresso_idling_resource_2_2_2.xml -------------------------------------------------------------------------------- /.idea/libraries/exposed_instrumentation_api_publish_0_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/exposed_instrumentation_api_publish_0_5.xml -------------------------------------------------------------------------------- /.idea/libraries/gson_2_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/gson_2_3_1.xml -------------------------------------------------------------------------------- /.idea/libraries/hamcrest_core_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/hamcrest_core_1_3.xml -------------------------------------------------------------------------------- /.idea/libraries/hamcrest_integration_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/hamcrest_integration_1_3.xml -------------------------------------------------------------------------------- /.idea/libraries/hamcrest_library_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/hamcrest_library_1_3.xml -------------------------------------------------------------------------------- /.idea/libraries/javawriter_2_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/javawriter_2_1_1.xml -------------------------------------------------------------------------------- /.idea/libraries/javax_annotation_api_1_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/javax_annotation_api_1_2.xml -------------------------------------------------------------------------------- /.idea/libraries/javax_inject_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/javax_inject_1.xml -------------------------------------------------------------------------------- /.idea/libraries/jsr305_2_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/jsr305_2_0_1.xml -------------------------------------------------------------------------------- /.idea/libraries/junit_4_12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/junit_4_12.xml -------------------------------------------------------------------------------- /.idea/libraries/okhttp_2_5_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/okhttp_2_5_0.xml -------------------------------------------------------------------------------- /.idea/libraries/okio_1_6_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/okio_1_6_0.xml -------------------------------------------------------------------------------- /.idea/libraries/retrofit_2_0_0_beta2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/retrofit_2_0_0_beta2.xml -------------------------------------------------------------------------------- /.idea/libraries/rules_0_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/rules_0_5.xml -------------------------------------------------------------------------------- /.idea/libraries/runner_0_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/runner_0_5.xml -------------------------------------------------------------------------------- /.idea/libraries/support_annotations_23_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/support_annotations_23_4_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_v4_23_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/support_v4_23_4_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_vector_drawable_23_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/libraries/support_vector_drawable_23_4_0.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /OWApi/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /OWApi/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/build.gradle -------------------------------------------------------------------------------- /OWApi/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/proguard-rules.pro -------------------------------------------------------------------------------- /OWApi/src/androidTest/java/az/openweatherapi/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/androidTest/java/az/openweatherapi/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /OWApi/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OWApi/src/main/java/az/openweatherapi/OWService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/java/az/openweatherapi/OWService.java -------------------------------------------------------------------------------- /OWApi/src/main/java/az/openweatherapi/OpenWeatherAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/java/az/openweatherapi/OpenWeatherAPI.java -------------------------------------------------------------------------------- /OWApi/src/main/java/az/openweatherapi/listener/OWRequestListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/java/az/openweatherapi/listener/OWRequestListener.java -------------------------------------------------------------------------------- /OWApi/src/main/java/az/openweatherapi/model/OWResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/java/az/openweatherapi/model/OWResponse.java -------------------------------------------------------------------------------- /OWApi/src/main/java/az/openweatherapi/model/gson/common/City.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/java/az/openweatherapi/model/gson/common/City.java -------------------------------------------------------------------------------- /OWApi/src/main/java/az/openweatherapi/model/gson/common/Clouds.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/java/az/openweatherapi/model/gson/common/Clouds.java -------------------------------------------------------------------------------- /OWApi/src/main/java/az/openweatherapi/model/gson/common/Coord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/java/az/openweatherapi/model/gson/common/Coord.java -------------------------------------------------------------------------------- /OWApi/src/main/java/az/openweatherapi/model/gson/common/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/java/az/openweatherapi/model/gson/common/Main.java -------------------------------------------------------------------------------- /OWApi/src/main/java/az/openweatherapi/model/gson/common/Rain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/java/az/openweatherapi/model/gson/common/Rain.java -------------------------------------------------------------------------------- /OWApi/src/main/java/az/openweatherapi/model/gson/common/Weather.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/java/az/openweatherapi/model/gson/common/Weather.java -------------------------------------------------------------------------------- /OWApi/src/main/java/az/openweatherapi/model/gson/common/Wind.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/java/az/openweatherapi/model/gson/common/Wind.java -------------------------------------------------------------------------------- /OWApi/src/main/java/az/openweatherapi/model/gson/current_day/CurrentWeather.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/java/az/openweatherapi/model/gson/current_day/CurrentWeather.java -------------------------------------------------------------------------------- /OWApi/src/main/java/az/openweatherapi/model/gson/current_day/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/java/az/openweatherapi/model/gson/current_day/Main.java -------------------------------------------------------------------------------- /OWApi/src/main/java/az/openweatherapi/model/gson/current_day/Sys.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/java/az/openweatherapi/model/gson/current_day/Sys.java -------------------------------------------------------------------------------- /OWApi/src/main/java/az/openweatherapi/model/gson/current_day/Weather.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/java/az/openweatherapi/model/gson/current_day/Weather.java -------------------------------------------------------------------------------- /OWApi/src/main/java/az/openweatherapi/model/gson/five_day/ExtendedWeather.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/java/az/openweatherapi/model/gson/five_day/ExtendedWeather.java -------------------------------------------------------------------------------- /OWApi/src/main/java/az/openweatherapi/model/gson/five_day/Sys.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/java/az/openweatherapi/model/gson/five_day/Sys.java -------------------------------------------------------------------------------- /OWApi/src/main/java/az/openweatherapi/model/gson/five_day/Sys_.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/java/az/openweatherapi/model/gson/five_day/Sys_.java -------------------------------------------------------------------------------- /OWApi/src/main/java/az/openweatherapi/model/gson/five_day/WeatherForecastElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/java/az/openweatherapi/model/gson/five_day/WeatherForecastElement.java -------------------------------------------------------------------------------- /OWApi/src/main/java/az/openweatherapi/utils/OWSupportedLanguages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/java/az/openweatherapi/utils/OWSupportedLanguages.java -------------------------------------------------------------------------------- /OWApi/src/main/java/az/openweatherapi/utils/OWSupportedUnits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/java/az/openweatherapi/utils/OWSupportedUnits.java -------------------------------------------------------------------------------- /OWApi/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /OWApi/src/test/java/az/openweatherapi/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/OWApi/src/test/java/az/openweatherapi/ExampleUnitTest.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurche/open-weather-map-android-wrapper/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':OWApi' 2 | --------------------------------------------------------------------------------