├── .github └── workflows │ └── build.yaml ├── .gitignore ├── .idea ├── .gitignore ├── compiler.xml ├── gradle.xml ├── misc.xml └── vcs.xml ├── README.md ├── common ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── it │ │ └── silleellie │ │ └── dndsync │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ └── it │ │ └── silleellie │ │ └── dndsync │ │ └── shared │ │ ├── PhoneSignal.kt │ │ ├── WearSignal.java │ │ └── prefs.kt │ └── test │ └── java │ └── it │ └── silleellie │ └── dndsync │ └── ExampleUnitTest.java ├── debug.keystore ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images ├── mobile.png ├── mobile_1.png ├── mobile_2.png ├── wear.png └── wear_1.png ├── mobile ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── it │ │ └── silleellie │ │ └── dndsync │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ │ └── it │ │ │ └── silleellie │ │ │ └── dndsync │ │ │ ├── DNDNotificationService.kt │ │ │ ├── DNDSyncListenerService.kt │ │ │ ├── MainActivity.kt │ │ │ ├── MainFragment.java │ │ │ ├── MainScreen.kt │ │ │ ├── MainViewModel.kt │ │ │ ├── PreferenceHelper.kt │ │ │ └── Theme.kt │ └── res │ │ ├── drawable │ │ ├── battery_saver.xml │ │ ├── bedtime.xml │ │ ├── do_not_disturb_on.xml │ │ ├── github.xml │ │ ├── rule_settings.xml │ │ ├── watch.xml │ │ ├── watch_check.xml │ │ └── watch_vibration.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ ├── themes.xml │ │ └── wear.xml │ │ └── xml │ │ └── root_preferences.xml │ └── test │ └── java │ └── it │ └── silleellie │ └── dndsync │ └── ExampleUnitTest.java ├── settings.gradle └── wear ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src └── main ├── AndroidManifest.xml ├── ic_launcher-playstore.png ├── java └── it │ └── silleellie │ └── dndsync │ ├── DNDNotificationService.kt │ ├── DNDSyncListenerService.kt │ ├── MainActivity.kt │ ├── MainFragment.java │ ├── MainScreen.kt │ └── ScrollingPage.kt └── res ├── drawable ├── check.xml ├── close.xml ├── do_not_disturb_off.xml ├── do_not_disturb_on.xml ├── error.xml ├── lock.xml ├── mobile_friendly.xml ├── mobile_off.xml └── no_encryption.xml ├── layout └── activity_main.xml ├── mipmap-anydpi-v26 ├── ic_launcher.xml └── ic_launcher_round.xml ├── mipmap-hdpi ├── ic_launcher.png ├── ic_launcher_foreground.png └── ic_launcher_round.png ├── mipmap-mdpi ├── ic_launcher.png ├── ic_launcher_foreground.png └── ic_launcher_round.png ├── mipmap-xhdpi ├── ic_launcher.png ├── ic_launcher_foreground.png └── ic_launcher_round.png ├── mipmap-xxhdpi ├── ic_launcher.png ├── ic_launcher_foreground.png └── ic_launcher_round.png ├── mipmap-xxxhdpi ├── ic_launcher.png ├── ic_launcher_foreground.png └── ic_launcher_round.png ├── values ├── colors.xml ├── dimens.xml ├── ic_launcher_background.xml ├── strings.xml ├── themes.xml └── wear.xml └── xml └── root_preferences.xml /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/README.md -------------------------------------------------------------------------------- /common/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /common/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/common/build.gradle -------------------------------------------------------------------------------- /common/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/common/proguard-rules.pro -------------------------------------------------------------------------------- /common/src/androidTest/java/it/silleellie/dndsync/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/common/src/androidTest/java/it/silleellie/dndsync/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /common/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/common/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /common/src/main/java/it/silleellie/dndsync/shared/PhoneSignal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/common/src/main/java/it/silleellie/dndsync/shared/PhoneSignal.kt -------------------------------------------------------------------------------- /common/src/main/java/it/silleellie/dndsync/shared/WearSignal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/common/src/main/java/it/silleellie/dndsync/shared/WearSignal.java -------------------------------------------------------------------------------- /common/src/main/java/it/silleellie/dndsync/shared/prefs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/common/src/main/java/it/silleellie/dndsync/shared/prefs.kt -------------------------------------------------------------------------------- /common/src/test/java/it/silleellie/dndsync/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/common/src/test/java/it/silleellie/dndsync/ExampleUnitTest.java -------------------------------------------------------------------------------- /debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/debug.keystore -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/images/mobile.png -------------------------------------------------------------------------------- /images/mobile_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/images/mobile_1.png -------------------------------------------------------------------------------- /images/mobile_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/images/mobile_2.png -------------------------------------------------------------------------------- /images/wear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/images/wear.png -------------------------------------------------------------------------------- /images/wear_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/images/wear_1.png -------------------------------------------------------------------------------- /mobile/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /mobile/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/build.gradle -------------------------------------------------------------------------------- /mobile/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/proguard-rules.pro -------------------------------------------------------------------------------- /mobile/src/androidTest/java/it/silleellie/dndsync/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/androidTest/java/it/silleellie/dndsync/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /mobile/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /mobile/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /mobile/src/main/java/it/silleellie/dndsync/DNDNotificationService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/java/it/silleellie/dndsync/DNDNotificationService.kt -------------------------------------------------------------------------------- /mobile/src/main/java/it/silleellie/dndsync/DNDSyncListenerService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/java/it/silleellie/dndsync/DNDSyncListenerService.kt -------------------------------------------------------------------------------- /mobile/src/main/java/it/silleellie/dndsync/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/java/it/silleellie/dndsync/MainActivity.kt -------------------------------------------------------------------------------- /mobile/src/main/java/it/silleellie/dndsync/MainFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/java/it/silleellie/dndsync/MainFragment.java -------------------------------------------------------------------------------- /mobile/src/main/java/it/silleellie/dndsync/MainScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/java/it/silleellie/dndsync/MainScreen.kt -------------------------------------------------------------------------------- /mobile/src/main/java/it/silleellie/dndsync/MainViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/java/it/silleellie/dndsync/MainViewModel.kt -------------------------------------------------------------------------------- /mobile/src/main/java/it/silleellie/dndsync/PreferenceHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/java/it/silleellie/dndsync/PreferenceHelper.kt -------------------------------------------------------------------------------- /mobile/src/main/java/it/silleellie/dndsync/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/java/it/silleellie/dndsync/Theme.kt -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/battery_saver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/drawable/battery_saver.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/bedtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/drawable/bedtime.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/do_not_disturb_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/drawable/do_not_disturb_on.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/github.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/drawable/github.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/rule_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/drawable/rule_settings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/watch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/drawable/watch.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/watch_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/drawable/watch_check.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/watch_vibration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/drawable/watch_vibration.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /mobile/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/wear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/values/wear.xml -------------------------------------------------------------------------------- /mobile/src/main/res/xml/root_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/main/res/xml/root_preferences.xml -------------------------------------------------------------------------------- /mobile/src/test/java/it/silleellie/dndsync/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/mobile/src/test/java/it/silleellie/dndsync/ExampleUnitTest.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/settings.gradle -------------------------------------------------------------------------------- /wear/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /wear/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/build.gradle -------------------------------------------------------------------------------- /wear/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/proguard-rules.pro -------------------------------------------------------------------------------- /wear/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /wear/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /wear/src/main/java/it/silleellie/dndsync/DNDNotificationService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/java/it/silleellie/dndsync/DNDNotificationService.kt -------------------------------------------------------------------------------- /wear/src/main/java/it/silleellie/dndsync/DNDSyncListenerService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/java/it/silleellie/dndsync/DNDSyncListenerService.kt -------------------------------------------------------------------------------- /wear/src/main/java/it/silleellie/dndsync/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/java/it/silleellie/dndsync/MainActivity.kt -------------------------------------------------------------------------------- /wear/src/main/java/it/silleellie/dndsync/MainFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/java/it/silleellie/dndsync/MainFragment.java -------------------------------------------------------------------------------- /wear/src/main/java/it/silleellie/dndsync/MainScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/java/it/silleellie/dndsync/MainScreen.kt -------------------------------------------------------------------------------- /wear/src/main/java/it/silleellie/dndsync/ScrollingPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/java/it/silleellie/dndsync/ScrollingPage.kt -------------------------------------------------------------------------------- /wear/src/main/res/drawable/check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/drawable/check.xml -------------------------------------------------------------------------------- /wear/src/main/res/drawable/close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/drawable/close.xml -------------------------------------------------------------------------------- /wear/src/main/res/drawable/do_not_disturb_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/drawable/do_not_disturb_off.xml -------------------------------------------------------------------------------- /wear/src/main/res/drawable/do_not_disturb_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/drawable/do_not_disturb_on.xml -------------------------------------------------------------------------------- /wear/src/main/res/drawable/error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/drawable/error.xml -------------------------------------------------------------------------------- /wear/src/main/res/drawable/lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/drawable/lock.xml -------------------------------------------------------------------------------- /wear/src/main/res/drawable/mobile_friendly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/drawable/mobile_friendly.xml -------------------------------------------------------------------------------- /wear/src/main/res/drawable/mobile_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/drawable/mobile_off.xml -------------------------------------------------------------------------------- /wear/src/main/res/drawable/no_encryption.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/drawable/no_encryption.xml -------------------------------------------------------------------------------- /wear/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wear/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /wear/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /wear/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /wear/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /wear/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /wear/src/main/res/values/wear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/values/wear.xml -------------------------------------------------------------------------------- /wear/src/main/res/xml/root_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turtlepaw/dnd-bedtime-sync/HEAD/wear/src/main/res/xml/root_preferences.xml --------------------------------------------------------------------------------