├── .gitignore ├── .idea ├── assetWizardSettings.xml ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── jarRepositories.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── mobile ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ └── se │ │ └── blunden │ │ └── donotdisturbsync │ │ ├── DNDSyncNotificationService.java │ │ ├── MainActivity.java │ │ ├── SettingsActivity.java │ │ └── WearMessageListenerService.java │ └── res │ ├── drawable-v21 │ └── ic_action_settings.xml │ ├── drawable │ └── ic_launcher_foreground.xml │ ├── layout │ └── activity_main.xml │ ├── menu │ └── menu_main.xml │ ├── mipmap-anydpi-v26 │ └── ic_launcher.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── values │ ├── arrays.xml │ ├── colors.xml │ ├── strings.xml │ ├── styles.xml │ └── wear.xml │ └── xml │ └── preferences.xml ├── settings.gradle └── wear ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src └── main ├── AndroidManifest.xml ├── java └── se │ └── blunden │ └── donotdisturbsync │ ├── DNDSyncNotificationService.java │ ├── MainActivity.java │ └── WearMessageListenerService.java └── res ├── drawable ├── ic_launcher_foreground.xml ├── open_on_phone.xml └── splash_screen.xml ├── layout └── activity_main.xml ├── mipmap-anydpi-v26 └── ic_launcher.xml ├── mipmap-hdpi └── ic_launcher.png ├── mipmap-mdpi └── ic_launcher.png ├── mipmap-xhdpi └── ic_launcher.png ├── mipmap-xxhdpi └── ic_launcher.png ├── mipmap-xxxhdpi └── ic_launcher.png └── values ├── colors.xml ├── dimens.xml ├── strings.xml ├── styles.xml └── wear.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/assetWizardSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/.idea/assetWizardSettings.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/gradlew.bat -------------------------------------------------------------------------------- /mobile/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /mobile/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/build.gradle -------------------------------------------------------------------------------- /mobile/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/proguard-rules.pro -------------------------------------------------------------------------------- /mobile/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /mobile/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /mobile/src/main/java/se/blunden/donotdisturbsync/DNDSyncNotificationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/java/se/blunden/donotdisturbsync/DNDSyncNotificationService.java -------------------------------------------------------------------------------- /mobile/src/main/java/se/blunden/donotdisturbsync/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/java/se/blunden/donotdisturbsync/MainActivity.java -------------------------------------------------------------------------------- /mobile/src/main/java/se/blunden/donotdisturbsync/SettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/java/se/blunden/donotdisturbsync/SettingsActivity.java -------------------------------------------------------------------------------- /mobile/src/main/java/se/blunden/donotdisturbsync/WearMessageListenerService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/java/se/blunden/donotdisturbsync/WearMessageListenerService.java -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-v21/ic_action_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/res/drawable-v21/ic_action_settings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /mobile/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/wear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/res/values/wear.xml -------------------------------------------------------------------------------- /mobile/src/main/res/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/mobile/src/main/res/xml/preferences.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':mobile', ':wear' 2 | -------------------------------------------------------------------------------- /wear/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /wear/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/wear/build.gradle -------------------------------------------------------------------------------- /wear/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/wear/proguard-rules.pro -------------------------------------------------------------------------------- /wear/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/wear/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /wear/src/main/java/se/blunden/donotdisturbsync/DNDSyncNotificationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/wear/src/main/java/se/blunden/donotdisturbsync/DNDSyncNotificationService.java -------------------------------------------------------------------------------- /wear/src/main/java/se/blunden/donotdisturbsync/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/wear/src/main/java/se/blunden/donotdisturbsync/MainActivity.java -------------------------------------------------------------------------------- /wear/src/main/java/se/blunden/donotdisturbsync/WearMessageListenerService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/wear/src/main/java/se/blunden/donotdisturbsync/WearMessageListenerService.java -------------------------------------------------------------------------------- /wear/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/wear/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /wear/src/main/res/drawable/open_on_phone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/wear/src/main/res/drawable/open_on_phone.xml -------------------------------------------------------------------------------- /wear/src/main/res/drawable/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/wear/src/main/res/drawable/splash_screen.xml -------------------------------------------------------------------------------- /wear/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/wear/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/wear/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/wear/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/wear/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/wear/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/wear/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/wear/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/wear/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /wear/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/wear/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /wear/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/wear/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /wear/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/wear/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /wear/src/main/res/values/wear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blunden/DoNotDisturbSync/HEAD/wear/src/main/res/values/wear.xml --------------------------------------------------------------------------------