├── .gitignore ├── .idea ├── .gitignore ├── .name ├── compiler.xml ├── gradle.xml ├── misc.xml ├── render.experimental.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── swanky │ │ └── countryinfo │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ │ └── com │ │ │ └── swanky │ │ │ └── countryinfo │ │ │ ├── adapter │ │ │ └── CountriesAdapter.kt │ │ │ ├── model │ │ │ ├── CountryData.kt │ │ │ └── CountryDetails.kt │ │ │ ├── service │ │ │ └── CountryAPI.kt │ │ │ └── view │ │ │ ├── DetailsActivity.kt │ │ │ ├── MainActivity.kt │ │ │ └── SplashActivity.kt │ └── res │ │ ├── anim │ │ ├── layout_animation_fall_down.xml │ │ └── viewholder_add_anim.xml │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ ├── ico_capital.png │ │ ├── ico_clock.png │ │ ├── ico_currencies.png │ │ ├── ico_languages.png │ │ ├── ico_population.png │ │ ├── ico_search.png │ │ ├── ico_start_of_week.png │ │ └── turkey.png │ │ ├── font │ │ └── fugaz_one.xml │ │ ├── layout │ │ ├── activity_details.xml │ │ ├── activity_main.xml │ │ ├── activity_splash.xml │ │ └── country_row.xml │ │ ├── menu │ │ └── my_menu.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── raw │ │ └── splash.json │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── font_certs.xml │ │ ├── ic_launcher_background.xml │ │ ├── preloaded_fonts.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── com │ └── swanky │ └── countryinfo │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Country Info -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/render.experimental.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/.idea/render.experimental.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/swanky/countryinfo/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/androidTest/java/com/swanky/countryinfo/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/com/swanky/countryinfo/adapter/CountriesAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/java/com/swanky/countryinfo/adapter/CountriesAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/swanky/countryinfo/model/CountryData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/java/com/swanky/countryinfo/model/CountryData.kt -------------------------------------------------------------------------------- /app/src/main/java/com/swanky/countryinfo/model/CountryDetails.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/java/com/swanky/countryinfo/model/CountryDetails.kt -------------------------------------------------------------------------------- /app/src/main/java/com/swanky/countryinfo/service/CountryAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/java/com/swanky/countryinfo/service/CountryAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/com/swanky/countryinfo/view/DetailsActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/java/com/swanky/countryinfo/view/DetailsActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/swanky/countryinfo/view/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/java/com/swanky/countryinfo/view/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/swanky/countryinfo/view/SplashActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/java/com/swanky/countryinfo/view/SplashActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/anim/layout_animation_fall_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/anim/layout_animation_fall_down.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/viewholder_add_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/anim/viewholder_add_anim.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ico_capital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/drawable/ico_capital.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ico_clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/drawable/ico_clock.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ico_currencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/drawable/ico_currencies.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ico_languages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/drawable/ico_languages.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ico_population.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/drawable/ico_population.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ico_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/drawable/ico_search.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ico_start_of_week.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/drawable/ico_start_of_week.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/turkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/drawable/turkey.png -------------------------------------------------------------------------------- /app/src/main/res/font/fugaz_one.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/font/fugaz_one.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/layout/activity_details.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/layout/activity_splash.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/country_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/layout/country_row.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/my_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/menu/my_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/raw/splash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/raw/splash.json -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/font_certs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/values/font_certs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/preloaded_fonts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/values/preloaded_fonts.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/test/java/com/swanky/countryinfo/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/app/src/test/java/com/swanky/countryinfo/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedmustafageldi/CountryInfo/HEAD/settings.gradle --------------------------------------------------------------------------------