├── .gitignore ├── .idea ├── codeStyleSettings.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── deploymentTargetSelector.xml ├── gradle.xml ├── migrations.xml ├── misc.xml ├── modules.xml ├── other.xml └── vcs.xml ├── AndroidManifest.xml ├── LICENSE ├── README.rst ├── convert-images.sh ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── headphones.svg ├── headphones_w.svg ├── res ├── drawable │ ├── headphones.png │ ├── headphones_w.png │ └── headset_w.png ├── layout │ └── activity_main.xml └── values │ └── strings.xml └── src ├── de └── cweiske │ └── headphoneindicator │ ├── Autostart.java │ ├── BackgroundService.java │ ├── MainActivity.java │ ├── NotificationReceiver.java │ ├── PlugInfo.java │ └── PlugIntentHelper.java └── main └── play ├── contact-email.txt ├── contact-website.txt ├── default-language.txt └── listings └── en-US ├── full-description.txt ├── graphics ├── feature-graphic │ └── feature-graphic.png ├── icon │ └── icon.png └── phone-screenshots │ ├── phone-1.png │ ├── phone-2.png │ ├── phone-3.png │ └── phone-4.png ├── short-description.txt └── title.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyleSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/.idea/codeStyleSettings.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetSelector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/.idea/deploymentTargetSelector.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/.idea/migrations.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/.idea/other.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/README.rst -------------------------------------------------------------------------------- /convert-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/convert-images.sh -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/gradlew -------------------------------------------------------------------------------- /headphones.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/headphones.svg -------------------------------------------------------------------------------- /headphones_w.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/headphones_w.svg -------------------------------------------------------------------------------- /res/drawable/headphones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/res/drawable/headphones.png -------------------------------------------------------------------------------- /res/drawable/headphones_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/res/drawable/headphones_w.png -------------------------------------------------------------------------------- /res/drawable/headset_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/res/drawable/headset_w.png -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/res/layout/activity_main.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /src/de/cweiske/headphoneindicator/Autostart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/src/de/cweiske/headphoneindicator/Autostart.java -------------------------------------------------------------------------------- /src/de/cweiske/headphoneindicator/BackgroundService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/src/de/cweiske/headphoneindicator/BackgroundService.java -------------------------------------------------------------------------------- /src/de/cweiske/headphoneindicator/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/src/de/cweiske/headphoneindicator/MainActivity.java -------------------------------------------------------------------------------- /src/de/cweiske/headphoneindicator/NotificationReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/src/de/cweiske/headphoneindicator/NotificationReceiver.java -------------------------------------------------------------------------------- /src/de/cweiske/headphoneindicator/PlugInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/src/de/cweiske/headphoneindicator/PlugInfo.java -------------------------------------------------------------------------------- /src/de/cweiske/headphoneindicator/PlugIntentHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/src/de/cweiske/headphoneindicator/PlugIntentHelper.java -------------------------------------------------------------------------------- /src/main/play/contact-email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/src/main/play/contact-email.txt -------------------------------------------------------------------------------- /src/main/play/contact-website.txt: -------------------------------------------------------------------------------- 1 | https://github.com/cweiske/headphoneindicator 2 | -------------------------------------------------------------------------------- /src/main/play/default-language.txt: -------------------------------------------------------------------------------- 1 | en-US 2 | -------------------------------------------------------------------------------- /src/main/play/listings/en-US/full-description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/src/main/play/listings/en-US/full-description.txt -------------------------------------------------------------------------------- /src/main/play/listings/en-US/graphics/feature-graphic/feature-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/src/main/play/listings/en-US/graphics/feature-graphic/feature-graphic.png -------------------------------------------------------------------------------- /src/main/play/listings/en-US/graphics/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/src/main/play/listings/en-US/graphics/icon/icon.png -------------------------------------------------------------------------------- /src/main/play/listings/en-US/graphics/phone-screenshots/phone-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/src/main/play/listings/en-US/graphics/phone-screenshots/phone-1.png -------------------------------------------------------------------------------- /src/main/play/listings/en-US/graphics/phone-screenshots/phone-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/src/main/play/listings/en-US/graphics/phone-screenshots/phone-2.png -------------------------------------------------------------------------------- /src/main/play/listings/en-US/graphics/phone-screenshots/phone-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/src/main/play/listings/en-US/graphics/phone-screenshots/phone-3.png -------------------------------------------------------------------------------- /src/main/play/listings/en-US/graphics/phone-screenshots/phone-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/src/main/play/listings/en-US/graphics/phone-screenshots/phone-4.png -------------------------------------------------------------------------------- /src/main/play/listings/en-US/short-description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/headphoneindicator/HEAD/src/main/play/listings/en-US/short-description.txt -------------------------------------------------------------------------------- /src/main/play/listings/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Headphone indicator 2 | --------------------------------------------------------------------------------