├── .directory ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .idea ├── assetWizardSettings.xml ├── caches │ └── build_file_checksums.ser ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── copyright │ ├── Streak_Alarm.xml │ └── profiles_settings.xml ├── dictionaries │ └── Fei.xml ├── encodings.xml ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml ├── jarRepositories.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── GNU-embedded.txt ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── app ├── .directory ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── debug │ └── AndroidManifest.xml │ └── main │ ├── AndroidManifest.xml │ ├── ic_launcher-web-small.png │ ├── ic_launcher-web.png │ ├── ic_shortcut_sent-web.png │ ├── java │ └── com │ │ └── iatfei │ │ └── streakalarm │ │ ├── AlarmReceiver.java │ │ ├── BatteryOptimizationUtil.java │ │ ├── BootBroadcastReceiver.java │ │ ├── ChangelogColorProvider.kt │ │ ├── ChangelogDisplay.kt │ │ ├── MainActivity.java │ │ ├── NewAboutActivity.java │ │ ├── NewOpenSourceActivity.kt │ │ ├── NotifScheduleActivity.java │ │ ├── NotificationManage.java │ │ ├── ReadService.java │ │ ├── ResetCloseActivity.java │ │ ├── ShortcutActivity.java │ │ ├── SnoozeService.java │ │ ├── Time.java │ │ ├── convertToEnglishDigits.java │ │ ├── reminderOff.java │ │ └── resetService.java │ └── res │ ├── drawable │ ├── camera_outline.xml │ ├── ic_access_time_black_24dp.xml │ ├── ic_baseline_arrow_drop_down_24.xml │ ├── ic_baseline_fire_24.xml │ ├── ic_baseline_help_24.xml │ ├── ic_baseline_keyboard_arrow_down_24.xml │ ├── ic_baseline_notifications_24.xml │ ├── ic_camera_alt_black_24dp.xml │ ├── ic_close_black_24dp.xml │ ├── ic_done_black_24dp.xml │ ├── ic_keyboard_arrow_up_black_24dp.xml │ ├── ic_more_vert_black_24dp.xml │ ├── ic_shortcut_sent_fore.xml │ ├── ic_snooze_black_24dp.xml │ └── timer_sand.xml │ ├── layout-land │ ├── activity_main.xml │ └── activity_notif_schedule.xml │ ├── layout │ ├── about_bar.xml │ ├── about_frame.xml │ ├── activity_main.xml │ ├── activity_notif_schedule.xml │ └── activity_reset_close.xml │ ├── menu │ ├── main_menu.xml │ └── notifsched_menu.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ ├── ic_launcher_round.xml │ ├── ic_shortcut_sent.xml │ └── ic_shortcut_sent_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ ├── ic_launcher_round.png │ ├── ic_shortcut_sent.png │ └── ic_shortcut_sent_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ ├── ic_launcher_round.png │ ├── ic_shortcut_sent.png │ └── ic_shortcut_sent_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ ├── ic_launcher_round.png │ ├── ic_shortcut_sent.png │ └── ic_shortcut_sent_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ ├── ic_launcher_round.png │ ├── ic_shortcut_sent.png │ └── ic_shortcut_sent_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ ├── ic_launcher_round.png │ ├── ic_shortcut_sent.png │ └── ic_shortcut_sent_round.png │ ├── values-ja-rJP │ └── strings.xml │ ├── values-ko-rKR │ └── strings.xml │ ├── values-night │ └── colors.xml │ ├── values-zh-rCN │ └── strings.xml │ ├── values-zh-rHK │ └── strings.xml │ ├── values-zh-rTW │ └── strings.xml │ ├── values │ ├── colors.xml │ ├── fab_buttons.xml │ ├── ic_launcher_background.xml │ ├── ic_shortcut_sent_background.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ ├── about.xml │ └── shortcuts.xml ├── crowdin.yml ├── fastlane ├── Appfile ├── Fastfile ├── Pluginfile ├── README.md ├── android │ └── en-US │ │ └── images │ │ ├── featureGraphic.png │ │ ├── icon.png │ │ └── phoneScreenshots │ │ ├── 1.jpg │ │ └── 2.jpg ├── metadata │ └── android │ │ ├── en-US │ │ ├── changelogs │ │ │ ├── 25.txt │ │ │ └── 26.txt │ │ ├── full_description.txt │ │ ├── images │ │ │ ├── featureGraphic.png │ │ │ ├── icon.png │ │ │ └── phoneScreenshots │ │ │ │ ├── 1_en-US.jpeg │ │ │ │ └── 2_en-US.jpeg │ │ ├── short_description.txt │ │ ├── title.txt │ │ └── video.txt │ │ ├── zh-CN │ │ ├── changelogs │ │ │ ├── 25.txt │ │ │ └── 26.txt │ │ ├── full_description.txt │ │ ├── images │ │ │ └── phoneScreenshots │ │ │ │ ├── 1_zh-CN.jpeg │ │ │ │ └── 2_zh-CN.jpeg │ │ ├── short_description.txt │ │ ├── title.txt │ │ └── video.txt │ │ ├── zh-HK │ │ ├── changelogs │ │ │ ├── 25.txt │ │ │ └── 26.txt │ │ ├── full_description.txt │ │ ├── images │ │ │ └── phoneScreenshots │ │ │ │ ├── 1_zh-HK.jpeg │ │ │ │ └── 2_zh-HK.jpeg │ │ ├── short_description.txt │ │ ├── title.txt │ │ └── video.txt │ │ └── zh-TW │ │ ├── changelogs │ │ ├── 25.txt │ │ └── 26.txt │ │ ├── full_description.txt │ │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1_zh-TW.jpeg │ │ │ └── 2_zh-TW.jpeg │ │ ├── short_description.txt │ │ ├── title.txt │ │ └── video.txt └── report.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── logo.xcf ├── settings.gradle ├── title.png └── title.xcf /.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2019,3,25,12,35,40 3 | Version=4 4 | ViewMode=1 5 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/assetWizardSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/.idea/assetWizardSettings.xml -------------------------------------------------------------------------------- /.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/Streak_Alarm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/.idea/copyright/Streak_Alarm.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/dictionaries/Fei.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/.idea/dictionaries/Fei.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /GNU-embedded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/GNU-embedded.txt -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/README.md -------------------------------------------------------------------------------- /app/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2019,1,24,13,22,46 3 | Version=4 4 | ViewMode=1 5 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/ic_launcher-web-small.png -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/ic_shortcut_sent-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/ic_shortcut_sent-web.png -------------------------------------------------------------------------------- /app/src/main/java/com/iatfei/streakalarm/AlarmReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/java/com/iatfei/streakalarm/AlarmReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/com/iatfei/streakalarm/BatteryOptimizationUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/java/com/iatfei/streakalarm/BatteryOptimizationUtil.java -------------------------------------------------------------------------------- /app/src/main/java/com/iatfei/streakalarm/BootBroadcastReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/java/com/iatfei/streakalarm/BootBroadcastReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/com/iatfei/streakalarm/ChangelogColorProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/java/com/iatfei/streakalarm/ChangelogColorProvider.kt -------------------------------------------------------------------------------- /app/src/main/java/com/iatfei/streakalarm/ChangelogDisplay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/java/com/iatfei/streakalarm/ChangelogDisplay.kt -------------------------------------------------------------------------------- /app/src/main/java/com/iatfei/streakalarm/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/java/com/iatfei/streakalarm/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/iatfei/streakalarm/NewAboutActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/java/com/iatfei/streakalarm/NewAboutActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/iatfei/streakalarm/NewOpenSourceActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/java/com/iatfei/streakalarm/NewOpenSourceActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/iatfei/streakalarm/NotifScheduleActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/java/com/iatfei/streakalarm/NotifScheduleActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/iatfei/streakalarm/NotificationManage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/java/com/iatfei/streakalarm/NotificationManage.java -------------------------------------------------------------------------------- /app/src/main/java/com/iatfei/streakalarm/ReadService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/java/com/iatfei/streakalarm/ReadService.java -------------------------------------------------------------------------------- /app/src/main/java/com/iatfei/streakalarm/ResetCloseActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/java/com/iatfei/streakalarm/ResetCloseActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/iatfei/streakalarm/ShortcutActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/java/com/iatfei/streakalarm/ShortcutActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/iatfei/streakalarm/SnoozeService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/java/com/iatfei/streakalarm/SnoozeService.java -------------------------------------------------------------------------------- /app/src/main/java/com/iatfei/streakalarm/Time.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/java/com/iatfei/streakalarm/Time.java -------------------------------------------------------------------------------- /app/src/main/java/com/iatfei/streakalarm/convertToEnglishDigits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/java/com/iatfei/streakalarm/convertToEnglishDigits.java -------------------------------------------------------------------------------- /app/src/main/java/com/iatfei/streakalarm/reminderOff.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/java/com/iatfei/streakalarm/reminderOff.java -------------------------------------------------------------------------------- /app/src/main/java/com/iatfei/streakalarm/resetService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/java/com/iatfei/streakalarm/resetService.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/camera_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/drawable/camera_outline.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_access_time_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/drawable/ic_access_time_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_arrow_drop_down_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/drawable/ic_baseline_arrow_drop_down_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_fire_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/drawable/ic_baseline_fire_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_help_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/drawable/ic_baseline_help_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_keyboard_arrow_down_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/drawable/ic_baseline_keyboard_arrow_down_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_notifications_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/drawable/ic_baseline_notifications_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_camera_alt_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/drawable/ic_camera_alt_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_close_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/drawable/ic_close_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_done_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/drawable/ic_done_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_keyboard_arrow_up_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/drawable/ic_keyboard_arrow_up_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_more_vert_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/drawable/ic_more_vert_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_shortcut_sent_fore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/drawable/ic_shortcut_sent_fore.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_snooze_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/drawable/ic_snooze_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/timer_sand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/drawable/timer_sand.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-land/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/layout-land/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-land/activity_notif_schedule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/layout-land/activity_notif_schedule.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/about_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/layout/about_bar.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/about_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/layout/about_frame.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_notif_schedule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/layout/activity_notif_schedule.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_reset_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/layout/activity_reset_close.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/main_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/menu/main_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/notifsched_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/menu/notifsched_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/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/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_shortcut_sent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_shortcut_sent.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_shortcut_sent_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_shortcut_sent_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_shortcut_sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-hdpi/ic_shortcut_sent.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_shortcut_sent_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-hdpi/ic_shortcut_sent_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_shortcut_sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-mdpi/ic_shortcut_sent.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_shortcut_sent_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-mdpi/ic_shortcut_sent_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_shortcut_sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-xhdpi/ic_shortcut_sent.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_shortcut_sent_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-xhdpi/ic_shortcut_sent_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_shortcut_sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-xxhdpi/ic_shortcut_sent.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_shortcut_sent_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-xxhdpi/ic_shortcut_sent_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_shortcut_sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_shortcut_sent.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_shortcut_sent_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_shortcut_sent_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-ja-rJP/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/values-ja-rJP/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ko-rKR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/values-ko-rKR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/values-zh-rHK/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/fab_buttons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/values/fab_buttons.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_shortcut_sent_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/values/ic_shortcut_sent_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/xml/about.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/app/src/main/res/xml/shortcuts.xml -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/crowdin.yml -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/Pluginfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /fastlane/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/android/en-US/images/phoneScreenshots/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/android/en-US/images/phoneScreenshots/1.jpg -------------------------------------------------------------------------------- /fastlane/android/en-US/images/phoneScreenshots/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/android/en-US/images/phoneScreenshots/2.jpg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/en-US/changelogs/25.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/en-US/changelogs/26.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/en-US/title.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/video.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/changelogs/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/zh-CN/changelogs/25.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/changelogs/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/zh-CN/changelogs/26.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/zh-CN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/images/phoneScreenshots/1_zh-CN.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/zh-CN/images/phoneScreenshots/1_zh-CN.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/images/phoneScreenshots/2_zh-CN.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/zh-CN/images/phoneScreenshots/2_zh-CN.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/short_description.txt: -------------------------------------------------------------------------------- 1 | 帮你保着 Snap 连环炮。有朋友才能发挥效用。 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/title.txt: -------------------------------------------------------------------------------- 1 | Snapchat 连环炮提示 - Streak Alarm -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/video.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-HK/changelogs/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/zh-HK/changelogs/25.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-HK/changelogs/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/zh-HK/changelogs/26.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-HK/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/zh-HK/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-HK/images/phoneScreenshots/1_zh-HK.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/zh-HK/images/phoneScreenshots/1_zh-HK.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-HK/images/phoneScreenshots/2_zh-HK.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/zh-HK/images/phoneScreenshots/2_zh-HK.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-HK/short_description.txt: -------------------------------------------------------------------------------- 1 | 自動提醒你儲火。有朋友才能發揮作用。 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-HK/title.txt: -------------------------------------------------------------------------------- 1 | Snapchat 儲火提示 - Streak Alarm -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-HK/video.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/changelogs/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/zh-TW/changelogs/25.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/changelogs/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/zh-TW/changelogs/26.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/zh-TW/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/images/phoneScreenshots/1_zh-TW.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/zh-TW/images/phoneScreenshots/1_zh-TW.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/images/phoneScreenshots/2_zh-TW.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/metadata/android/zh-TW/images/phoneScreenshots/2_zh-TW.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/short_description.txt: -------------------------------------------------------------------------------- 1 | 幫你保着 Snap 連環炮。有朋友才能發揮作用。 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/title.txt: -------------------------------------------------------------------------------- 1 | Snapchat 儲火(連環炮)提示 - Streak Alarm -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/video.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/fastlane/report.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/gradlew.bat -------------------------------------------------------------------------------- /logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/logo.xcf -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/title.png -------------------------------------------------------------------------------- /title.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei0316/snapstreak-alarm/HEAD/title.xcf --------------------------------------------------------------------------------