├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── android.yml │ └── nightly.yml ├── .gitignore ├── .gitmodules ├── .idea ├── codeStyles │ └── Project.xml ├── misc.xml └── runConfigurations.xml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── forrestguice │ │ └── suntimes │ │ └── solunar │ │ └── data │ │ ├── SolunarCalculatorTest.java │ │ └── SolunarProviderTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── art │ │ ├── solunarperiods.svg │ │ └── solunarperiods1.svg │ ├── ic_launcher-web.png │ ├── java │ │ └── com │ │ │ └── forrestguice │ │ │ └── suntimes │ │ │ ├── calculator │ │ │ └── MoonPhaseDisplay.java │ │ │ └── solunar │ │ │ ├── AppSettings.java │ │ │ ├── AppThemes.java │ │ │ ├── ExceptionHandler.java │ │ │ ├── MainActivity.java │ │ │ ├── SettingsActivity.java │ │ │ ├── data │ │ │ ├── MoonPhase.java │ │ │ ├── SolunarCalculator.java │ │ │ ├── SolunarData.java │ │ │ ├── SolunarPeriod.java │ │ │ ├── SolunarProvider.java │ │ │ ├── SolunarProviderContract.java │ │ │ └── SolunarRating.java │ │ │ └── ui │ │ │ ├── AboutDialog.java │ │ │ ├── DateDialog.java │ │ │ ├── DisplayStrings.java │ │ │ ├── HelpDialog.java │ │ │ ├── SolunarCardAdapter.java │ │ │ ├── SolunarCardHolder.java │ │ │ └── SolunarDaySheet.java │ └── res │ │ ├── color │ │ ├── card_background_dark.xml │ │ ├── card_background_light.xml │ │ ├── textbutton_date.xml │ │ └── textbutton_moonset.xml │ │ ├── drawable-anydpi │ │ ├── ic_action_back.xml │ │ ├── ic_action_back_light.xml │ │ ├── ic_action_first.xml │ │ ├── ic_action_first_light.xml │ │ ├── ic_action_last.xml │ │ ├── ic_action_last_light.xml │ │ ├── ic_action_next.xml │ │ ├── ic_action_next_light.xml │ │ ├── ic_action_prev.xml │ │ ├── ic_action_prev_light.xml │ │ ├── ic_action_share.xml │ │ └── ic_action_share_light.xml │ │ ├── drawable-hdpi │ │ ├── ic_about.png │ │ ├── ic_about_light.png │ │ ├── ic_action_back.png │ │ ├── ic_action_back_light.png │ │ ├── ic_action_first.png │ │ ├── ic_action_first_light.png │ │ ├── ic_action_last.png │ │ ├── ic_action_last_light.png │ │ ├── ic_action_next.png │ │ ├── ic_action_next_light.png │ │ ├── ic_action_prev.png │ │ ├── ic_action_prev_light.png │ │ ├── ic_action_share.png │ │ ├── ic_action_share_light.png │ │ ├── ic_help.png │ │ ├── ic_help_light.png │ │ ├── ic_settings.png │ │ ├── ic_settings_light.png │ │ ├── ic_today.png │ │ └── ic_today_light.png │ │ ├── drawable-mdpi │ │ ├── ic_about.png │ │ ├── ic_about_light.png │ │ ├── ic_action_back.png │ │ ├── ic_action_back_light.png │ │ ├── ic_action_first.png │ │ ├── ic_action_first_light.png │ │ ├── ic_action_last.png │ │ ├── ic_action_last_light.png │ │ ├── ic_action_next.png │ │ ├── ic_action_next_light.png │ │ ├── ic_action_prev.png │ │ ├── ic_action_prev_light.png │ │ ├── ic_action_share.png │ │ ├── ic_action_share_light.png │ │ ├── ic_help.png │ │ ├── ic_help_light.png │ │ ├── ic_settings.png │ │ ├── ic_settings_light.png │ │ ├── ic_today.png │ │ └── ic_today_light.png │ │ ├── drawable-xhdpi │ │ ├── ic_about.png │ │ ├── ic_about_light.png │ │ ├── ic_action_back.png │ │ ├── ic_action_back_light.png │ │ ├── ic_action_first.png │ │ ├── ic_action_first_light.png │ │ ├── ic_action_last.png │ │ ├── ic_action_last_light.png │ │ ├── ic_action_next.png │ │ ├── ic_action_next_light.png │ │ ├── ic_action_prev.png │ │ ├── ic_action_prev_light.png │ │ ├── ic_action_share.png │ │ ├── ic_action_share_light.png │ │ ├── ic_help.png │ │ ├── ic_help_light.png │ │ ├── ic_settings.png │ │ ├── ic_settings_light.png │ │ ├── ic_today.png │ │ └── ic_today_light.png │ │ ├── drawable-xxhdpi │ │ ├── ic_about.png │ │ ├── ic_about_light.png │ │ ├── ic_action_back.png │ │ ├── ic_action_back_light.png │ │ ├── ic_action_first.png │ │ ├── ic_action_first_light.png │ │ ├── ic_action_last.png │ │ ├── ic_action_last_light.png │ │ ├── ic_action_next.png │ │ ├── ic_action_next_light.png │ │ ├── ic_action_prev.png │ │ ├── ic_action_prev_light.png │ │ ├── ic_action_share.png │ │ ├── ic_action_share_light.png │ │ ├── ic_help.png │ │ ├── ic_help_light.png │ │ ├── ic_settings.png │ │ ├── ic_settings_light.png │ │ ├── ic_today.png │ │ └── ic_today_light.png │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_launcher_monochrome.xml │ │ ├── moonnight_dark.xml │ │ ├── moonnight_light.xml │ │ ├── moonnoon_dark.xml │ │ ├── moonnoon_light.xml │ │ ├── rounded_box_dark.xml │ │ └── rounded_box_light.xml │ │ ├── layout-v21 │ │ ├── dialog_date_content.xml │ │ └── dialog_date_header.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── card_solunarday.xml │ │ ├── card_solunarday_content.xml │ │ ├── dialog_about.xml │ │ ├── dialog_date.xml │ │ ├── dialog_date_content.xml │ │ ├── dialog_date_header.xml │ │ ├── dialog_datenav.xml │ │ ├── dialog_help.xml │ │ └── dialog_solunarday.xml │ │ ├── menu │ │ ├── menu_daysheet.xml │ │ ├── menu_main.xml │ │ └── menu_timezone.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.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-en-rCA │ │ └── help_urls.xml │ │ ├── values-en-rUS │ │ └── help_urls.xml │ │ ├── values-en │ │ └── help_urls.xml │ │ ├── values-es-rMX │ │ └── help_urls.xml │ │ ├── values-es │ │ └── help_urls.xml │ │ ├── values-fr-rCA │ │ └── help_urls.xml │ │ ├── values-fr │ │ └── help_urls.xml │ │ ├── values-night │ │ ├── colors.xml │ │ ├── icons.xml │ │ └── styles.xml │ │ ├── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── help_urls.xml │ │ ├── icons.xml │ │ ├── ids.xml │ │ ├── launcher.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── suntimes.xml │ │ └── xml │ │ ├── backup_descriptor.xml │ │ ├── data_extraction_rules.xml │ │ ├── pref_general.xml │ │ └── pref_headers.xml │ ├── nightly │ └── res │ │ └── values │ │ └── launcher.xml │ └── test │ └── java │ └── com │ └── forrestguice │ └── suntimes │ └── solunar │ └── ExampleUnitTest.java ├── fastlane └── metadata │ └── android │ └── en-US │ ├── changelogs │ ├── 1.txt │ ├── 2.txt │ └── 3.txt │ ├── full_description.txt │ ├── images │ ├── featureGraphic.png │ ├── icon.png │ └── phoneScreenshots │ │ ├── 1.png │ │ └── 2.png │ └── short_description.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/.github/workflows/nightly.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/forrestguice/suntimes/solunar/data/SolunarCalculatorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/androidTest/java/com/forrestguice/suntimes/solunar/data/SolunarCalculatorTest.java -------------------------------------------------------------------------------- /app/src/androidTest/java/com/forrestguice/suntimes/solunar/data/SolunarProviderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/androidTest/java/com/forrestguice/suntimes/solunar/data/SolunarProviderTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/art/solunarperiods.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/art/solunarperiods.svg -------------------------------------------------------------------------------- /app/src/main/art/solunarperiods1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/art/solunarperiods1.svg -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/java/com/forrestguice/suntimes/calculator/MoonPhaseDisplay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/java/com/forrestguice/suntimes/calculator/MoonPhaseDisplay.java -------------------------------------------------------------------------------- /app/src/main/java/com/forrestguice/suntimes/solunar/AppSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/java/com/forrestguice/suntimes/solunar/AppSettings.java -------------------------------------------------------------------------------- /app/src/main/java/com/forrestguice/suntimes/solunar/AppThemes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/java/com/forrestguice/suntimes/solunar/AppThemes.java -------------------------------------------------------------------------------- /app/src/main/java/com/forrestguice/suntimes/solunar/ExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/java/com/forrestguice/suntimes/solunar/ExceptionHandler.java -------------------------------------------------------------------------------- /app/src/main/java/com/forrestguice/suntimes/solunar/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/java/com/forrestguice/suntimes/solunar/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/forrestguice/suntimes/solunar/SettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/java/com/forrestguice/suntimes/solunar/SettingsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/forrestguice/suntimes/solunar/data/MoonPhase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/java/com/forrestguice/suntimes/solunar/data/MoonPhase.java -------------------------------------------------------------------------------- /app/src/main/java/com/forrestguice/suntimes/solunar/data/SolunarCalculator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/java/com/forrestguice/suntimes/solunar/data/SolunarCalculator.java -------------------------------------------------------------------------------- /app/src/main/java/com/forrestguice/suntimes/solunar/data/SolunarData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/java/com/forrestguice/suntimes/solunar/data/SolunarData.java -------------------------------------------------------------------------------- /app/src/main/java/com/forrestguice/suntimes/solunar/data/SolunarPeriod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/java/com/forrestguice/suntimes/solunar/data/SolunarPeriod.java -------------------------------------------------------------------------------- /app/src/main/java/com/forrestguice/suntimes/solunar/data/SolunarProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/java/com/forrestguice/suntimes/solunar/data/SolunarProvider.java -------------------------------------------------------------------------------- /app/src/main/java/com/forrestguice/suntimes/solunar/data/SolunarProviderContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/java/com/forrestguice/suntimes/solunar/data/SolunarProviderContract.java -------------------------------------------------------------------------------- /app/src/main/java/com/forrestguice/suntimes/solunar/data/SolunarRating.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/java/com/forrestguice/suntimes/solunar/data/SolunarRating.java -------------------------------------------------------------------------------- /app/src/main/java/com/forrestguice/suntimes/solunar/ui/AboutDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/java/com/forrestguice/suntimes/solunar/ui/AboutDialog.java -------------------------------------------------------------------------------- /app/src/main/java/com/forrestguice/suntimes/solunar/ui/DateDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/java/com/forrestguice/suntimes/solunar/ui/DateDialog.java -------------------------------------------------------------------------------- /app/src/main/java/com/forrestguice/suntimes/solunar/ui/DisplayStrings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/java/com/forrestguice/suntimes/solunar/ui/DisplayStrings.java -------------------------------------------------------------------------------- /app/src/main/java/com/forrestguice/suntimes/solunar/ui/HelpDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/java/com/forrestguice/suntimes/solunar/ui/HelpDialog.java -------------------------------------------------------------------------------- /app/src/main/java/com/forrestguice/suntimes/solunar/ui/SolunarCardAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/java/com/forrestguice/suntimes/solunar/ui/SolunarCardAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/forrestguice/suntimes/solunar/ui/SolunarCardHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/java/com/forrestguice/suntimes/solunar/ui/SolunarCardHolder.java -------------------------------------------------------------------------------- /app/src/main/java/com/forrestguice/suntimes/solunar/ui/SolunarDaySheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/java/com/forrestguice/suntimes/solunar/ui/SolunarDaySheet.java -------------------------------------------------------------------------------- /app/src/main/res/color/card_background_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/color/card_background_dark.xml -------------------------------------------------------------------------------- /app/src/main/res/color/card_background_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/color/card_background_light.xml -------------------------------------------------------------------------------- /app/src/main/res/color/textbutton_date.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/color/textbutton_date.xml -------------------------------------------------------------------------------- /app/src/main/res/color/textbutton_moonset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/color/textbutton_moonset.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/ic_action_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-anydpi/ic_action_back.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/ic_action_back_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-anydpi/ic_action_back_light.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/ic_action_first.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-anydpi/ic_action_first.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/ic_action_first_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-anydpi/ic_action_first_light.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/ic_action_last.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-anydpi/ic_action_last.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/ic_action_last_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-anydpi/ic_action_last_light.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/ic_action_next.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-anydpi/ic_action_next.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/ic_action_next_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-anydpi/ic_action_next_light.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/ic_action_prev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-anydpi/ic_action_prev.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/ic_action_prev_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-anydpi/ic_action_prev_light.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/ic_action_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-anydpi/ic_action_share.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/ic_action_share_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-anydpi/ic_action_share_light.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-hdpi/ic_about.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_about_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-hdpi/ic_about_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-hdpi/ic_action_back.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_back_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-hdpi/ic_action_back_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-hdpi/ic_action_first.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_first_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-hdpi/ic_action_first_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-hdpi/ic_action_last.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_last_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-hdpi/ic_action_last_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-hdpi/ic_action_next.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_next_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-hdpi/ic_action_next_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-hdpi/ic_action_prev.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_prev_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-hdpi/ic_action_prev_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-hdpi/ic_action_share.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_share_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-hdpi/ic_action_share_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-hdpi/ic_help.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_help_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-hdpi/ic_help_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-hdpi/ic_settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-hdpi/ic_settings_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_today.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-hdpi/ic_today.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_today_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-hdpi/ic_today_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-mdpi/ic_about.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_about_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-mdpi/ic_about_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-mdpi/ic_action_back.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_back_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-mdpi/ic_action_back_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-mdpi/ic_action_first.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_first_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-mdpi/ic_action_first_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-mdpi/ic_action_last.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_last_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-mdpi/ic_action_last_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-mdpi/ic_action_next.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_next_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-mdpi/ic_action_next_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-mdpi/ic_action_prev.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_prev_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-mdpi/ic_action_prev_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-mdpi/ic_action_share.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_share_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-mdpi/ic_action_share_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-mdpi/ic_help.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_help_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-mdpi/ic_help_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-mdpi/ic_settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-mdpi/ic_settings_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_today.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-mdpi/ic_today.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_today_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-mdpi/ic_today_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xhdpi/ic_about.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_about_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xhdpi/ic_about_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xhdpi/ic_action_back.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_back_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xhdpi/ic_action_back_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xhdpi/ic_action_first.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_first_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xhdpi/ic_action_first_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xhdpi/ic_action_last.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_last_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xhdpi/ic_action_last_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xhdpi/ic_action_next.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_next_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xhdpi/ic_action_next_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xhdpi/ic_action_prev.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_prev_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xhdpi/ic_action_prev_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xhdpi/ic_action_share.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_share_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xhdpi/ic_action_share_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xhdpi/ic_help.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_help_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xhdpi/ic_help_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xhdpi/ic_settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xhdpi/ic_settings_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_today.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xhdpi/ic_today.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_today_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xhdpi/ic_today_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xxhdpi/ic_about.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_about_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xxhdpi/ic_about_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_back.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_back_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_back_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_first.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_first_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_first_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_last.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_last_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_last_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_next.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_next_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_next_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_prev.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_prev_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_prev_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_share.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_share_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_share_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xxhdpi/ic_help.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_help_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xxhdpi/ic_help_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xxhdpi/ic_settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xxhdpi/ic_settings_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_today.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xxhdpi/ic_today.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_today_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable-xxhdpi/ic_today_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable/ic_launcher_monochrome.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/moonnight_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable/moonnight_dark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/moonnight_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable/moonnight_light.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/moonnoon_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable/moonnoon_dark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/moonnoon_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable/moonnoon_light.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_box_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable/rounded_box_dark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_box_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/drawable/rounded_box_light.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-v21/dialog_date_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/layout-v21/dialog_date_content.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-v21/dialog_date_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/layout-v21/dialog_date_header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/card_solunarday.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/layout/card_solunarday.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/card_solunarday_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/layout/card_solunarday_content.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/layout/dialog_about.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_date.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/layout/dialog_date.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_date_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/layout/dialog_date_content.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_date_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/layout/dialog_date_header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_datenav.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/layout/dialog_datenav.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/layout/dialog_help.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_solunarday.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/layout/dialog_solunarday.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_daysheet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/menu/menu_daysheet.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_timezone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/menu/menu_timezone.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/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/forrestguice/SolunarPeriods/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/forrestguice/SolunarPeriods/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-en-rCA/help_urls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/values-en-rCA/help_urls.xml -------------------------------------------------------------------------------- /app/src/main/res/values-en-rUS/help_urls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/values-en-rUS/help_urls.xml -------------------------------------------------------------------------------- /app/src/main/res/values-en/help_urls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/values-en/help_urls.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es-rMX/help_urls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/values-es-rMX/help_urls.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es/help_urls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/values-es/help_urls.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr-rCA/help_urls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/values-fr-rCA/help_urls.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/help_urls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/values-fr/help_urls.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/icons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/values-night/icons.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/help_urls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/values/help_urls.xml -------------------------------------------------------------------------------- /app/src/main/res/values/icons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/values/icons.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /app/src/main/res/values/launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/values/launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/suntimes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/values/suntimes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_descriptor.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/pref_general.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/xml/pref_general.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/pref_headers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/main/res/xml/pref_headers.xml -------------------------------------------------------------------------------- /app/src/nightly/res/values/launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/nightly/res/values/launcher.xml -------------------------------------------------------------------------------- /app/src/test/java/com/forrestguice/suntimes/solunar/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/app/src/test/java/com/forrestguice/suntimes/solunar/ExampleUnitTest.java -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/fastlane/metadata/android/en-US/changelogs/1.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/fastlane/metadata/android/en-US/changelogs/2.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/fastlane/metadata/android/en-US/changelogs/3.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestguice/SolunarPeriods/HEAD/settings.gradle --------------------------------------------------------------------------------