├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── markdown-navigator │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── app │ │ └── android │ │ └── com │ │ └── weatherapplication │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── app │ │ │ └── android │ │ │ └── com │ │ │ └── weatherapplication │ │ │ ├── MainActivity.java │ │ │ ├── adapters │ │ │ ├── AutoCompleteAdapter.java │ │ │ ├── RecyclerAdapter.java │ │ │ └── RecyclerAdapterAccuWeather.java │ │ │ ├── constants │ │ │ └── ProjectConstants.java │ │ │ ├── interfaces │ │ │ ├── IWeatherApi.java │ │ │ └── IWeatherCallbackListener.java │ │ │ ├── models │ │ │ ├── AccuWeather5DayModel.java │ │ │ ├── AccuWeatherModel.java │ │ │ ├── LocationSearchModel.java │ │ │ ├── OpenWeather5DayModel.java │ │ │ └── OpenWeatherModel.java │ │ │ └── utils │ │ │ ├── ApiService.java │ │ │ └── WeatherConditions.java │ └── res │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── row_recycler.xml │ │ └── row_suggestions.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── app │ └── android │ └── com │ └── weatherapplication │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/.idea/markdown-navigator/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/app/android/com/weatherapplication/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/androidTest/java/app/android/com/weatherapplication/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/app/android/com/weatherapplication/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/java/app/android/com/weatherapplication/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/app/android/com/weatherapplication/adapters/AutoCompleteAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/java/app/android/com/weatherapplication/adapters/AutoCompleteAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/app/android/com/weatherapplication/adapters/RecyclerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/java/app/android/com/weatherapplication/adapters/RecyclerAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/app/android/com/weatherapplication/adapters/RecyclerAdapterAccuWeather.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/java/app/android/com/weatherapplication/adapters/RecyclerAdapterAccuWeather.java -------------------------------------------------------------------------------- /app/src/main/java/app/android/com/weatherapplication/constants/ProjectConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/java/app/android/com/weatherapplication/constants/ProjectConstants.java -------------------------------------------------------------------------------- /app/src/main/java/app/android/com/weatherapplication/interfaces/IWeatherApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/java/app/android/com/weatherapplication/interfaces/IWeatherApi.java -------------------------------------------------------------------------------- /app/src/main/java/app/android/com/weatherapplication/interfaces/IWeatherCallbackListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/java/app/android/com/weatherapplication/interfaces/IWeatherCallbackListener.java -------------------------------------------------------------------------------- /app/src/main/java/app/android/com/weatherapplication/models/AccuWeather5DayModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/java/app/android/com/weatherapplication/models/AccuWeather5DayModel.java -------------------------------------------------------------------------------- /app/src/main/java/app/android/com/weatherapplication/models/AccuWeatherModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/java/app/android/com/weatherapplication/models/AccuWeatherModel.java -------------------------------------------------------------------------------- /app/src/main/java/app/android/com/weatherapplication/models/LocationSearchModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/java/app/android/com/weatherapplication/models/LocationSearchModel.java -------------------------------------------------------------------------------- /app/src/main/java/app/android/com/weatherapplication/models/OpenWeather5DayModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/java/app/android/com/weatherapplication/models/OpenWeather5DayModel.java -------------------------------------------------------------------------------- /app/src/main/java/app/android/com/weatherapplication/models/OpenWeatherModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/java/app/android/com/weatherapplication/models/OpenWeatherModel.java -------------------------------------------------------------------------------- /app/src/main/java/app/android/com/weatherapplication/utils/ApiService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/java/app/android/com/weatherapplication/utils/ApiService.java -------------------------------------------------------------------------------- /app/src/main/java/app/android/com/weatherapplication/utils/WeatherConditions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/java/app/android/com/weatherapplication/utils/WeatherConditions.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/row_recycler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/res/layout/row_recycler.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/row_suggestions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/res/layout/row_suggestions.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/app/android/com/weatherapplication/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/app/src/test/java/app/android/com/weatherapplication/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akash-bisariya/Location-Weather/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------