├── LICENSE.txt ├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── ncellappcamp │ │ └── example │ │ └── com │ │ └── retrofit │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ └── fonts │ │ │ ├── weather.ttf │ │ │ └── weathericons-regular-webfont.ttf │ ├── java │ │ └── ncellappcamp │ │ │ └── example │ │ │ └── com │ │ │ └── retrofit │ │ │ ├── CustomAdapter.java │ │ │ ├── GPSTracker.java │ │ │ ├── Interface │ │ │ └── HttpCallback.java │ │ │ ├── Model │ │ │ ├── City.java │ │ │ ├── Clouds.java │ │ │ ├── Coord.java │ │ │ ├── List.java │ │ │ ├── Main.java │ │ │ ├── Rain.java │ │ │ ├── Sys.java │ │ │ ├── Sys_.java │ │ │ ├── Weather.java │ │ │ ├── WeatherData.java │ │ │ └── Wind.java │ │ │ ├── ScrollingActivity.java │ │ │ ├── Service │ │ │ └── APIManager.java │ │ │ ├── Weather.java │ │ │ └── WeatherAdapter.java │ └── res │ │ ├── drawable │ │ └── back.jpg │ │ ├── layout │ │ ├── activity_scrolling.xml │ │ ├── cardview_forecast.xml │ │ ├── content_scrolling.xml │ │ └── forecast.xml │ │ ├── menu │ │ └── menu_scrolling.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-v21 │ │ └── styles.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── ncellappcamp │ └── example │ └── com │ └── retrofit │ └── ExampleUnitTest.java ├── device-2015-10-25-025059.png ├── device-2015-10-28-065350.png ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── retrofit.iml ├── retrofit.png └── settings.gradle / LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/ LICENSE.txt -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | retrofit -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/ncellappcamp/example/com/retrofit/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/androidTest/java/ncellappcamp/example/com/retrofit/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/fonts/weather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/assets/fonts/weather.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/weathericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/assets/fonts/weathericons-regular-webfont.ttf -------------------------------------------------------------------------------- /app/src/main/java/ncellappcamp/example/com/retrofit/CustomAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/java/ncellappcamp/example/com/retrofit/CustomAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/ncellappcamp/example/com/retrofit/GPSTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/java/ncellappcamp/example/com/retrofit/GPSTracker.java -------------------------------------------------------------------------------- /app/src/main/java/ncellappcamp/example/com/retrofit/Interface/HttpCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/java/ncellappcamp/example/com/retrofit/Interface/HttpCallback.java -------------------------------------------------------------------------------- /app/src/main/java/ncellappcamp/example/com/retrofit/Model/City.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/java/ncellappcamp/example/com/retrofit/Model/City.java -------------------------------------------------------------------------------- /app/src/main/java/ncellappcamp/example/com/retrofit/Model/Clouds.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/java/ncellappcamp/example/com/retrofit/Model/Clouds.java -------------------------------------------------------------------------------- /app/src/main/java/ncellappcamp/example/com/retrofit/Model/Coord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/java/ncellappcamp/example/com/retrofit/Model/Coord.java -------------------------------------------------------------------------------- /app/src/main/java/ncellappcamp/example/com/retrofit/Model/List.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/java/ncellappcamp/example/com/retrofit/Model/List.java -------------------------------------------------------------------------------- /app/src/main/java/ncellappcamp/example/com/retrofit/Model/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/java/ncellappcamp/example/com/retrofit/Model/Main.java -------------------------------------------------------------------------------- /app/src/main/java/ncellappcamp/example/com/retrofit/Model/Rain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/java/ncellappcamp/example/com/retrofit/Model/Rain.java -------------------------------------------------------------------------------- /app/src/main/java/ncellappcamp/example/com/retrofit/Model/Sys.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/java/ncellappcamp/example/com/retrofit/Model/Sys.java -------------------------------------------------------------------------------- /app/src/main/java/ncellappcamp/example/com/retrofit/Model/Sys_.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/java/ncellappcamp/example/com/retrofit/Model/Sys_.java -------------------------------------------------------------------------------- /app/src/main/java/ncellappcamp/example/com/retrofit/Model/Weather.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/java/ncellappcamp/example/com/retrofit/Model/Weather.java -------------------------------------------------------------------------------- /app/src/main/java/ncellappcamp/example/com/retrofit/Model/WeatherData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/java/ncellappcamp/example/com/retrofit/Model/WeatherData.java -------------------------------------------------------------------------------- /app/src/main/java/ncellappcamp/example/com/retrofit/Model/Wind.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/java/ncellappcamp/example/com/retrofit/Model/Wind.java -------------------------------------------------------------------------------- /app/src/main/java/ncellappcamp/example/com/retrofit/ScrollingActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/java/ncellappcamp/example/com/retrofit/ScrollingActivity.java -------------------------------------------------------------------------------- /app/src/main/java/ncellappcamp/example/com/retrofit/Service/APIManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/java/ncellappcamp/example/com/retrofit/Service/APIManager.java -------------------------------------------------------------------------------- /app/src/main/java/ncellappcamp/example/com/retrofit/Weather.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/java/ncellappcamp/example/com/retrofit/Weather.java -------------------------------------------------------------------------------- /app/src/main/java/ncellappcamp/example/com/retrofit/WeatherAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/java/ncellappcamp/example/com/retrofit/WeatherAdapter.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/res/drawable/back.jpg -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_scrolling.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/res/layout/activity_scrolling.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/cardview_forecast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/res/layout/cardview_forecast.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/content_scrolling.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/res/layout/content_scrolling.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/forecast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/res/layout/forecast.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_scrolling.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/res/menu/menu_scrolling.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/ncellappcamp/example/com/retrofit/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/app/src/test/java/ncellappcamp/example/com/retrofit/ExampleUnitTest.java -------------------------------------------------------------------------------- /device-2015-10-25-025059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/device-2015-10-25-025059.png -------------------------------------------------------------------------------- /device-2015-10-28-065350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/device-2015-10-28-065350.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/gradlew.bat -------------------------------------------------------------------------------- /retrofit.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/retrofit.iml -------------------------------------------------------------------------------- /retrofit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitsthaa/retrofit-openweather/HEAD/retrofit.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------