├── .gitignore ├── .idea ├── assetWizardSettings.xml ├── caches │ └── build_file_checksums.ser ├── codeStyles │ └── Project.xml ├── dictionaries │ └── olivi.xml ├── gradle.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── yummywakame │ │ └── breakroom │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-web.png │ ├── java │ │ └── com │ │ │ └── yummywakame │ │ │ └── breakroom │ │ │ ├── HashMapper.java │ │ │ ├── MainActivity.java │ │ │ ├── MyApplication.java │ │ │ ├── NewsArticle.java │ │ │ ├── NewsArticleAdapter.java │ │ │ ├── NewsArticleLoader.java │ │ │ ├── NewsQueryUtils.java │ │ │ ├── SettingsActivity.java │ │ │ └── UrlConstructor.java │ └── res │ │ ├── animator-v21 │ │ └── lift_on_touch.xml │ │ ├── drawable-hdpi │ │ ├── bookmark.png │ │ ├── g_icon.png │ │ ├── g_logo.png │ │ ├── guardian_logo_white.png │ │ ├── guardian_placeholder.jpg │ │ ├── ic_filter.png │ │ ├── ic_refresh.png │ │ ├── ic_settings.png │ │ ├── ic_thumb_up.png │ │ └── no_thumbnail_bg.png │ │ ├── drawable-ldpi │ │ ├── bookmark.png │ │ ├── g_icon.png │ │ ├── g_logo.png │ │ ├── guardian_placeholder.jpg │ │ └── no_thumbnail_bg.png │ │ ├── drawable-mdpi │ │ ├── bookmark.png │ │ ├── g_icon.png │ │ ├── g_logo.png │ │ ├── guardian_logo_white.png │ │ ├── guardian_placeholder.jpg │ │ ├── ic_filter.png │ │ ├── ic_refresh.png │ │ ├── ic_settings.png │ │ ├── ic_thumb_up.png │ │ └── no_thumbnail_bg.png │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xhdpi │ │ ├── bookmark.png │ │ ├── g_icon.png │ │ ├── g_logo.png │ │ ├── guardian_logo_white.png │ │ ├── guardian_placeholder.jpg │ │ ├── ic_filter.png │ │ ├── ic_refresh.png │ │ ├── ic_settings.png │ │ ├── ic_thumb_up.png │ │ └── no_thumbnail_bg.png │ │ ├── drawable-xxhdpi │ │ ├── bookmark.png │ │ ├── g_icon.png │ │ ├── g_logo.png │ │ ├── guardian_logo_white.png │ │ ├── guardian_placeholder.jpg │ │ ├── ic_filter.png │ │ ├── ic_refresh.png │ │ ├── ic_settings.png │ │ ├── ic_thumb_up.png │ │ └── no_thumbnail_bg.png │ │ ├── drawable-xxxhdpi │ │ ├── bookmark.png │ │ ├── g_icon.png │ │ ├── g_logo.png │ │ ├── guardian_logo_white.png │ │ ├── guardian_placeholder.jpg │ │ ├── ic_filter.png │ │ └── no_thumbnail_bg.png │ │ ├── drawable │ │ ├── date_background_tint_alpha.xml │ │ ├── ic_launcher_background.xml │ │ └── scrim.xml │ │ ├── font │ │ ├── libre_baskerville.ttf │ │ ├── libre_baskerville_bold.ttf │ │ ├── ubuntu.ttf │ │ ├── ubuntu_bold.ttf │ │ ├── ubuntu_italic.ttf │ │ ├── ubuntu_medium.ttf │ │ └── ubuntu_mono_bold.ttf │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── activity_settings.xml │ │ └── news_item.xml │ │ ├── menu │ │ └── main.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 │ │ ├── values-v21 │ │ ├── bools.xml │ │ └── styles.xml │ │ ├── values │ │ ├── arrays.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── font_certs.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ └── settings_main.xml │ └── test │ └── java │ └── com │ └── yummywakame │ └── breakroom │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshots-layout.png ├── settings.gradle └── youtube.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/assetWizardSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/.idea/assetWizardSettings.xml -------------------------------------------------------------------------------- /.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/dictionaries/olivi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/.idea/dictionaries/olivi.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/yummywakame/breakroom/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/androidTest/java/com/yummywakame/breakroom/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/java/com/yummywakame/breakroom/HashMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/java/com/yummywakame/breakroom/HashMapper.java -------------------------------------------------------------------------------- /app/src/main/java/com/yummywakame/breakroom/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/java/com/yummywakame/breakroom/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/yummywakame/breakroom/MyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/java/com/yummywakame/breakroom/MyApplication.java -------------------------------------------------------------------------------- /app/src/main/java/com/yummywakame/breakroom/NewsArticle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/java/com/yummywakame/breakroom/NewsArticle.java -------------------------------------------------------------------------------- /app/src/main/java/com/yummywakame/breakroom/NewsArticleAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/java/com/yummywakame/breakroom/NewsArticleAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/yummywakame/breakroom/NewsArticleLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/java/com/yummywakame/breakroom/NewsArticleLoader.java -------------------------------------------------------------------------------- /app/src/main/java/com/yummywakame/breakroom/NewsQueryUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/java/com/yummywakame/breakroom/NewsQueryUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/yummywakame/breakroom/SettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/java/com/yummywakame/breakroom/SettingsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/yummywakame/breakroom/UrlConstructor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/java/com/yummywakame/breakroom/UrlConstructor.java -------------------------------------------------------------------------------- /app/src/main/res/animator-v21/lift_on_touch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/animator-v21/lift_on_touch.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-hdpi/bookmark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/g_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-hdpi/g_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/g_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-hdpi/g_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/guardian_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-hdpi/guardian_logo_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/guardian_placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-hdpi/guardian_placeholder.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-hdpi/ic_filter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-hdpi/ic_refresh.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-hdpi/ic_settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_thumb_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-hdpi/ic_thumb_up.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/no_thumbnail_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-hdpi/no_thumbnail_bg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-ldpi/bookmark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/g_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-ldpi/g_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/g_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-ldpi/g_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/guardian_placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-ldpi/guardian_placeholder.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/no_thumbnail_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-ldpi/no_thumbnail_bg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-mdpi/bookmark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/g_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-mdpi/g_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/g_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-mdpi/g_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/guardian_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-mdpi/guardian_logo_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/guardian_placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-mdpi/guardian_placeholder.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-mdpi/ic_filter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-mdpi/ic_refresh.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-mdpi/ic_settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_thumb_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-mdpi/ic_thumb_up.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/no_thumbnail_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-mdpi/no_thumbnail_bg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xhdpi/bookmark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/g_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xhdpi/g_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/g_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xhdpi/g_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/guardian_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xhdpi/guardian_logo_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/guardian_placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xhdpi/guardian_placeholder.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xhdpi/ic_filter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xhdpi/ic_settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_thumb_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xhdpi/ic_thumb_up.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/no_thumbnail_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xhdpi/no_thumbnail_bg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xxhdpi/bookmark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/g_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xxhdpi/g_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/g_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xxhdpi/g_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/guardian_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xxhdpi/guardian_logo_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/guardian_placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xxhdpi/guardian_placeholder.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xxhdpi/ic_filter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xxhdpi/ic_settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_thumb_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xxhdpi/ic_thumb_up.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/no_thumbnail_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xxhdpi/no_thumbnail_bg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xxxhdpi/bookmark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/g_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xxxhdpi/g_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/g_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xxxhdpi/g_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/guardian_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xxxhdpi/guardian_logo_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/guardian_placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xxxhdpi/guardian_placeholder.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xxxhdpi/ic_filter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/no_thumbnail_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable-xxxhdpi/no_thumbnail_bg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/date_background_tint_alpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable/date_background_tint_alpha.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/scrim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/drawable/scrim.xml -------------------------------------------------------------------------------- /app/src/main/res/font/libre_baskerville.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/font/libre_baskerville.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/libre_baskerville_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/font/libre_baskerville_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/ubuntu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/font/ubuntu.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/ubuntu_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/font/ubuntu_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/ubuntu_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/font/ubuntu_italic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/ubuntu_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/font/ubuntu_medium.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/ubuntu_mono_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/font/ubuntu_mono_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/layout/activity_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/news_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/layout/news_item.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/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/yummywakame/GoodNewsFirst/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/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/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/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/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/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/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/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/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/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/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/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-v21/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/values-v21/bools.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/font_certs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/values/font_certs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/settings_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/main/res/xml/settings_main.xml -------------------------------------------------------------------------------- /app/src/test/java/com/yummywakame/breakroom/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/app/src/test/java/com/yummywakame/breakroom/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/gradlew.bat -------------------------------------------------------------------------------- /screenshots-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/screenshots-layout.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /youtube.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yummywakame/GoodNewsFirst/HEAD/youtube.jpg --------------------------------------------------------------------------------