├── .gitignore ├── LICENSE.md ├── README-pl.md ├── README.md ├── fastlane └── metadata │ └── android │ ├── en-US │ ├── changelogs │ │ ├── 1.txt │ │ ├── 2.txt │ │ └── 3.txt │ ├── full_description.txt │ ├── images │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ └── 6.png │ ├── short_description.txt │ └── title.txt │ └── pl │ ├── changelogs │ ├── 1.txt │ ├── 2.txt │ └── 3.txt │ ├── full_description.txt │ ├── images │ ├── icon.png │ └── phoneScreenshots │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ └── 6.png │ ├── short_description.txt │ └── title.txt ├── icons ├── android │ ├── play_store_512.png │ └── res │ │ ├── mipmap-anydpi-v26 │ │ └── ic_launcher.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ └── ic_launcher_foreground.png │ │ └── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ └── ic_launcher_foreground.png ├── ios │ ├── AppIcon-20@2x.png │ ├── AppIcon-20@2x~ipad.png │ ├── AppIcon-20@3x.png │ ├── AppIcon-20~ipad.png │ ├── AppIcon-29.png │ ├── AppIcon-29@2x.png │ ├── AppIcon-29@2x~ipad.png │ ├── AppIcon-29@3x.png │ ├── AppIcon-29~ipad.png │ ├── AppIcon-40@2x.png │ ├── AppIcon-40@2x~ipad.png │ ├── AppIcon-40@3x.png │ ├── AppIcon-40~ipad.png │ ├── AppIcon-60@2x~car.png │ ├── AppIcon-60@3x~car.png │ ├── AppIcon-83.5@2x~ipad.png │ ├── AppIcon@2x.png │ ├── AppIcon@2x~ipad.png │ ├── AppIcon@3x.png │ ├── AppIcon~ios-marketing.png │ ├── AppIcon~ipad.png │ └── Contents.json └── web │ ├── README.txt │ ├── apple-touch-icon.png │ ├── favicon.ico │ ├── icon-192-maskable.png │ ├── icon-192.png │ ├── icon-512-maskable.png │ └── icon-512.png ├── mockup.drawio ├── remove-log.sh ├── src ├── .gitignore ├── LICENSE.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── pl │ │ │ └── ascendit │ │ │ └── onetimealarm │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── pl │ │ │ │ └── ascendit │ │ │ │ └── onetimealarm │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── StopAlarmActivity.kt │ │ │ │ ├── able │ │ │ │ ├── Loadable.kt │ │ │ │ ├── Navigable.kt │ │ │ │ └── Updatable.kt │ │ │ │ ├── adapter │ │ │ │ └── AlarmItemAdapter.kt │ │ │ │ ├── data │ │ │ │ ├── alarm │ │ │ │ │ ├── Alarm.kt │ │ │ │ │ ├── AlarmDao.kt │ │ │ │ │ └── AlarmDatabase.kt │ │ │ │ └── converter │ │ │ │ │ └── LocalDateTimeConverter.kt │ │ │ │ ├── dialog │ │ │ │ └── DialogAlarmEdit.kt │ │ │ │ ├── fragment │ │ │ │ ├── AboutFragment.kt │ │ │ │ ├── AlarmFragment.kt │ │ │ │ └── SettingsFragment.kt │ │ │ │ ├── helper │ │ │ │ ├── PendingIntentHelper.kt │ │ │ │ ├── TimeHelper.kt │ │ │ │ └── TimePickerHelper.kt │ │ │ │ ├── logic │ │ │ │ ├── AlarmLogic.kt │ │ │ │ ├── SettingsLogic.kt │ │ │ │ └── SoundLogic.kt │ │ │ │ └── receiver │ │ │ │ ├── ButtonReceiver.kt │ │ │ │ ├── NotificationReceiver.kt │ │ │ │ └── UpdateOrRebootReceiver.kt │ │ └── res │ │ │ ├── drawable-night │ │ │ ├── ascendit.png │ │ │ ├── github.png │ │ │ ├── linkedin.png │ │ │ ├── mail.png │ │ │ ├── placeholder.png │ │ │ ├── signature.png │ │ │ └── web.png │ │ │ ├── drawable-pl-night │ │ │ └── ascendit.png │ │ │ ├── drawable-pl │ │ │ └── ascendit.png │ │ │ ├── drawable │ │ │ ├── ascendit.png │ │ │ ├── github.png │ │ │ ├── ic_baseline_access_time_24.xml │ │ │ ├── ic_baseline_add_24.xml │ │ │ ├── ic_baseline_alarm_24.xml │ │ │ ├── ic_baseline_alarm_off_24.xml │ │ │ ├── ic_baseline_label_24.xml │ │ │ ├── ic_baseline_today_24.xml │ │ │ ├── ic_baseline_vibration_24.xml │ │ │ ├── ic_baseline_volume_up_24.xml │ │ │ ├── linkedin.png │ │ │ ├── mail.png │ │ │ ├── placeholder.png │ │ │ ├── signature.png │ │ │ └── web.png │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── activity_stop_alarm.xml │ │ │ ├── alarm_item.xml │ │ │ ├── dialog_alarm_edit.xml │ │ │ ├── dropdown_item.xml │ │ │ ├── fragment_about.xml │ │ │ └── fragment_alarm.xml │ │ │ ├── menu │ │ │ └── menu.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ └── ic_launcher_foreground.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values-pl │ │ │ └── strings.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── pl │ │ └── ascendit │ │ └── onetimealarm │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── store ├── en │ ├── desc.txt │ └── screens │ │ ├── add_alarm.png │ │ ├── alarms.png │ │ ├── edit_alarm.png │ │ ├── set_time.png │ │ ├── settings.png │ │ ├── standard_alarm_clock.png │ │ └── turn_off_alarm.png └── pl │ ├── desc.txt │ └── screens │ ├── add_alarm.png │ ├── alarms.png │ ├── edit_alarm.png │ ├── set_time.png │ ├── settings.png │ ├── standard_alarm_clock.png │ └── turn_off_alarm.png └── todo.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README-pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/README-pl.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/README.md -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | First release 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/2.txt: -------------------------------------------------------------------------------- 1 | Icons are visible in dark mode 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/3.txt: -------------------------------------------------------------------------------- 1 | About page displays proper app version 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/5.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/6.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | OneTimeAlarm 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | Pierwsza wersja 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/changelogs/2.txt: -------------------------------------------------------------------------------- 1 | Ikony w trybie ciemnym są widoczne 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/changelogs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/fastlane/metadata/android/pl/changelogs/3.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/fastlane/metadata/android/pl/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/fastlane/metadata/android/pl/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/fastlane/metadata/android/pl/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/fastlane/metadata/android/pl/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/fastlane/metadata/android/pl/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/fastlane/metadata/android/pl/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/images/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/fastlane/metadata/android/pl/images/phoneScreenshots/5.png -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/images/phoneScreenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/fastlane/metadata/android/pl/images/phoneScreenshots/6.png -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/short_description.txt: -------------------------------------------------------------------------------- 1 | Tworzenie alarmów automatycznie usuwających się po wywołaniu. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/title.txt: -------------------------------------------------------------------------------- 1 | Jednorazowy alarm 2 | -------------------------------------------------------------------------------- /icons/android/play_store_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/android/play_store_512.png -------------------------------------------------------------------------------- /icons/android/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/android/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /icons/android/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/android/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /icons/android/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/android/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /icons/android/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/android/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /icons/android/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/android/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /icons/android/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/android/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /icons/android/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/android/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /icons/android/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/android/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /icons/android/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/android/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /icons/android/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/android/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /icons/android/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/android/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /icons/android/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/android/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /icons/android/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/android/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /icons/android/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/android/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /icons/android/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/android/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /icons/android/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/android/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /icons/ios/AppIcon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/AppIcon-20@2x.png -------------------------------------------------------------------------------- /icons/ios/AppIcon-20@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/AppIcon-20@2x~ipad.png -------------------------------------------------------------------------------- /icons/ios/AppIcon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/AppIcon-20@3x.png -------------------------------------------------------------------------------- /icons/ios/AppIcon-20~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/AppIcon-20~ipad.png -------------------------------------------------------------------------------- /icons/ios/AppIcon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/AppIcon-29.png -------------------------------------------------------------------------------- /icons/ios/AppIcon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/AppIcon-29@2x.png -------------------------------------------------------------------------------- /icons/ios/AppIcon-29@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/AppIcon-29@2x~ipad.png -------------------------------------------------------------------------------- /icons/ios/AppIcon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/AppIcon-29@3x.png -------------------------------------------------------------------------------- /icons/ios/AppIcon-29~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/AppIcon-29~ipad.png -------------------------------------------------------------------------------- /icons/ios/AppIcon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/AppIcon-40@2x.png -------------------------------------------------------------------------------- /icons/ios/AppIcon-40@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/AppIcon-40@2x~ipad.png -------------------------------------------------------------------------------- /icons/ios/AppIcon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/AppIcon-40@3x.png -------------------------------------------------------------------------------- /icons/ios/AppIcon-40~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/AppIcon-40~ipad.png -------------------------------------------------------------------------------- /icons/ios/AppIcon-60@2x~car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/AppIcon-60@2x~car.png -------------------------------------------------------------------------------- /icons/ios/AppIcon-60@3x~car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/AppIcon-60@3x~car.png -------------------------------------------------------------------------------- /icons/ios/AppIcon-83.5@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/AppIcon-83.5@2x~ipad.png -------------------------------------------------------------------------------- /icons/ios/AppIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/AppIcon@2x.png -------------------------------------------------------------------------------- /icons/ios/AppIcon@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/AppIcon@2x~ipad.png -------------------------------------------------------------------------------- /icons/ios/AppIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/AppIcon@3x.png -------------------------------------------------------------------------------- /icons/ios/AppIcon~ios-marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/AppIcon~ios-marketing.png -------------------------------------------------------------------------------- /icons/ios/AppIcon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/AppIcon~ipad.png -------------------------------------------------------------------------------- /icons/ios/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/ios/Contents.json -------------------------------------------------------------------------------- /icons/web/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/web/README.txt -------------------------------------------------------------------------------- /icons/web/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/web/apple-touch-icon.png -------------------------------------------------------------------------------- /icons/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/web/favicon.ico -------------------------------------------------------------------------------- /icons/web/icon-192-maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/web/icon-192-maskable.png -------------------------------------------------------------------------------- /icons/web/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/web/icon-192.png -------------------------------------------------------------------------------- /icons/web/icon-512-maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/web/icon-512-maskable.png -------------------------------------------------------------------------------- /icons/web/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/icons/web/icon-512.png -------------------------------------------------------------------------------- /mockup.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/mockup.drawio -------------------------------------------------------------------------------- /remove-log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/remove-log.sh -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/LICENSE.md -------------------------------------------------------------------------------- /src/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /src/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/build.gradle -------------------------------------------------------------------------------- /src/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/proguard-rules.pro -------------------------------------------------------------------------------- /src/app/src/androidTest/java/pl/ascendit/onetimealarm/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/androidTest/java/pl/ascendit/onetimealarm/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /src/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/MainActivity.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/StopAlarmActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/StopAlarmActivity.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/able/Loadable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/able/Loadable.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/able/Navigable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/able/Navigable.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/able/Updatable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/able/Updatable.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/adapter/AlarmItemAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/adapter/AlarmItemAdapter.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/data/alarm/Alarm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/data/alarm/Alarm.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/data/alarm/AlarmDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/data/alarm/AlarmDao.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/data/alarm/AlarmDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/data/alarm/AlarmDatabase.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/data/converter/LocalDateTimeConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/data/converter/LocalDateTimeConverter.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/dialog/DialogAlarmEdit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/dialog/DialogAlarmEdit.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/fragment/AboutFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/fragment/AboutFragment.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/fragment/AlarmFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/fragment/AlarmFragment.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/fragment/SettingsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/fragment/SettingsFragment.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/helper/PendingIntentHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/helper/PendingIntentHelper.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/helper/TimeHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/helper/TimeHelper.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/helper/TimePickerHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/helper/TimePickerHelper.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/logic/AlarmLogic.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/logic/AlarmLogic.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/logic/SettingsLogic.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/logic/SettingsLogic.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/logic/SoundLogic.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/logic/SoundLogic.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/receiver/ButtonReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/receiver/ButtonReceiver.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/receiver/NotificationReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/receiver/NotificationReceiver.kt -------------------------------------------------------------------------------- /src/app/src/main/java/pl/ascendit/onetimealarm/receiver/UpdateOrRebootReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/java/pl/ascendit/onetimealarm/receiver/UpdateOrRebootReceiver.kt -------------------------------------------------------------------------------- /src/app/src/main/res/drawable-night/ascendit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable-night/ascendit.png -------------------------------------------------------------------------------- /src/app/src/main/res/drawable-night/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable-night/github.png -------------------------------------------------------------------------------- /src/app/src/main/res/drawable-night/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable-night/linkedin.png -------------------------------------------------------------------------------- /src/app/src/main/res/drawable-night/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable-night/mail.png -------------------------------------------------------------------------------- /src/app/src/main/res/drawable-night/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable-night/placeholder.png -------------------------------------------------------------------------------- /src/app/src/main/res/drawable-night/signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable-night/signature.png -------------------------------------------------------------------------------- /src/app/src/main/res/drawable-night/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable-night/web.png -------------------------------------------------------------------------------- /src/app/src/main/res/drawable-pl-night/ascendit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable-pl-night/ascendit.png -------------------------------------------------------------------------------- /src/app/src/main/res/drawable-pl/ascendit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable-pl/ascendit.png -------------------------------------------------------------------------------- /src/app/src/main/res/drawable/ascendit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable/ascendit.png -------------------------------------------------------------------------------- /src/app/src/main/res/drawable/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable/github.png -------------------------------------------------------------------------------- /src/app/src/main/res/drawable/ic_baseline_access_time_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable/ic_baseline_access_time_24.xml -------------------------------------------------------------------------------- /src/app/src/main/res/drawable/ic_baseline_add_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable/ic_baseline_add_24.xml -------------------------------------------------------------------------------- /src/app/src/main/res/drawable/ic_baseline_alarm_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable/ic_baseline_alarm_24.xml -------------------------------------------------------------------------------- /src/app/src/main/res/drawable/ic_baseline_alarm_off_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable/ic_baseline_alarm_off_24.xml -------------------------------------------------------------------------------- /src/app/src/main/res/drawable/ic_baseline_label_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable/ic_baseline_label_24.xml -------------------------------------------------------------------------------- /src/app/src/main/res/drawable/ic_baseline_today_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable/ic_baseline_today_24.xml -------------------------------------------------------------------------------- /src/app/src/main/res/drawable/ic_baseline_vibration_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable/ic_baseline_vibration_24.xml -------------------------------------------------------------------------------- /src/app/src/main/res/drawable/ic_baseline_volume_up_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable/ic_baseline_volume_up_24.xml -------------------------------------------------------------------------------- /src/app/src/main/res/drawable/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable/linkedin.png -------------------------------------------------------------------------------- /src/app/src/main/res/drawable/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable/mail.png -------------------------------------------------------------------------------- /src/app/src/main/res/drawable/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable/placeholder.png -------------------------------------------------------------------------------- /src/app/src/main/res/drawable/signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable/signature.png -------------------------------------------------------------------------------- /src/app/src/main/res/drawable/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/drawable/web.png -------------------------------------------------------------------------------- /src/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /src/app/src/main/res/layout/activity_stop_alarm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/layout/activity_stop_alarm.xml -------------------------------------------------------------------------------- /src/app/src/main/res/layout/alarm_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/layout/alarm_item.xml -------------------------------------------------------------------------------- /src/app/src/main/res/layout/dialog_alarm_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/layout/dialog_alarm_edit.xml -------------------------------------------------------------------------------- /src/app/src/main/res/layout/dropdown_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/layout/dropdown_item.xml -------------------------------------------------------------------------------- /src/app/src/main/res/layout/fragment_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/layout/fragment_about.xml -------------------------------------------------------------------------------- /src/app/src/main/res/layout/fragment_alarm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/layout/fragment_alarm.xml -------------------------------------------------------------------------------- /src/app/src/main/res/menu/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/menu/menu.xml -------------------------------------------------------------------------------- /src/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /src/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /src/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /src/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /src/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /src/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /src/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /src/app/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /src/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /src/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /src/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /src/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /src/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /src/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /src/app/src/test/java/pl/ascendit/onetimealarm/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/app/src/test/java/pl/ascendit/onetimealarm/ExampleUnitTest.kt -------------------------------------------------------------------------------- /src/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/build.gradle -------------------------------------------------------------------------------- /src/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/gradle.properties -------------------------------------------------------------------------------- /src/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /src/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/gradlew -------------------------------------------------------------------------------- /src/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/gradlew.bat -------------------------------------------------------------------------------- /src/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/src/settings.gradle -------------------------------------------------------------------------------- /store/en/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/store/en/desc.txt -------------------------------------------------------------------------------- /store/en/screens/add_alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/store/en/screens/add_alarm.png -------------------------------------------------------------------------------- /store/en/screens/alarms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/store/en/screens/alarms.png -------------------------------------------------------------------------------- /store/en/screens/edit_alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/store/en/screens/edit_alarm.png -------------------------------------------------------------------------------- /store/en/screens/set_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/store/en/screens/set_time.png -------------------------------------------------------------------------------- /store/en/screens/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/store/en/screens/settings.png -------------------------------------------------------------------------------- /store/en/screens/standard_alarm_clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/store/en/screens/standard_alarm_clock.png -------------------------------------------------------------------------------- /store/en/screens/turn_off_alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/store/en/screens/turn_off_alarm.png -------------------------------------------------------------------------------- /store/pl/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/store/pl/desc.txt -------------------------------------------------------------------------------- /store/pl/screens/add_alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/store/pl/screens/add_alarm.png -------------------------------------------------------------------------------- /store/pl/screens/alarms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/store/pl/screens/alarms.png -------------------------------------------------------------------------------- /store/pl/screens/edit_alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/store/pl/screens/edit_alarm.png -------------------------------------------------------------------------------- /store/pl/screens/set_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/store/pl/screens/set_time.png -------------------------------------------------------------------------------- /store/pl/screens/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/store/pl/screens/settings.png -------------------------------------------------------------------------------- /store/pl/screens/standard_alarm_clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/store/pl/screens/standard_alarm_clock.png -------------------------------------------------------------------------------- /store/pl/screens/turn_off_alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/store/pl/screens/turn_off_alarm.png -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matdlu/OneTimeAlarm/HEAD/todo.txt --------------------------------------------------------------------------------