├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ ├── rebase.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── xposed_init │ ├── java │ └── ru │ │ └── hepolise │ │ └── volumekeytrackcontrol │ │ ├── module │ │ ├── VolumeControlModule.kt │ │ ├── VolumeKeyControlModuleHandlers.kt │ │ └── util │ │ │ ├── LogHelper.kt │ │ │ ├── RemotePrefsHelper.kt │ │ │ └── StatusHelper.kt │ │ ├── provider │ │ └── RemotePrefProvider.kt │ │ ├── receiver │ │ └── BootReceiver.kt │ │ ├── repository │ │ └── BootRepository.kt │ │ ├── service │ │ └── RewindActionTileService.kt │ │ ├── ui │ │ ├── SettingsActivity.kt │ │ ├── Util.kt │ │ ├── component │ │ │ ├── AppFilterSetting.kt │ │ │ ├── LongPressSetting.kt │ │ │ ├── NumberAlertDialog.kt │ │ │ ├── PrefsSlider.kt │ │ │ ├── SwapButtonsSetting.kt │ │ │ └── VibrationEffectSetting.kt │ │ ├── model │ │ │ └── AppInfo.kt │ │ ├── navigation │ │ │ └── AppNavigation.kt │ │ └── screen │ │ │ ├── AppFilterScreen.kt │ │ │ └── SettingsScreen.kt │ │ ├── util │ │ ├── AppFilterType.kt │ │ ├── Constants.kt │ │ ├── LSPosedLogger.kt │ │ ├── RewindActionType.kt │ │ ├── SharedPreferencesUtil.kt │ │ ├── StatusSysPropsHelper.kt │ │ ├── SystemProps.kt │ │ └── VibratorUtil.kt │ │ └── viewmodel │ │ ├── AppFilterViewModel.kt │ │ ├── AppIconViewModel.kt │ │ ├── BootViewModel.kt │ │ └── BootViewModelFactory.kt │ └── res │ ├── drawable │ ├── ic_fast_forward_48dp.xml │ ├── ic_launcher_background.xml │ └── ic_skip_next_48dp.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── values-ru-rRU │ └── strings.xml │ ├── values-zh-rCN │ └── strings.xml │ ├── values-zh-rTW │ └── strings.xml │ ├── values │ ├── module_scope.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ └── locales_config.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/rebase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/.github/workflows/rebase.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/xposed_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/assets/xposed_init -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/module/VolumeControlModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/module/VolumeControlModule.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/module/VolumeKeyControlModuleHandlers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/module/VolumeKeyControlModuleHandlers.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/module/util/LogHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/module/util/LogHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/module/util/RemotePrefsHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/module/util/RemotePrefsHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/module/util/StatusHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/module/util/StatusHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/provider/RemotePrefProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/provider/RemotePrefProvider.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/receiver/BootReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/receiver/BootReceiver.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/repository/BootRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/repository/BootRepository.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/service/RewindActionTileService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/service/RewindActionTileService.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/SettingsActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/SettingsActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/Util.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/Util.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/component/AppFilterSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/component/AppFilterSetting.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/component/LongPressSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/component/LongPressSetting.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/component/NumberAlertDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/component/NumberAlertDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/component/PrefsSlider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/component/PrefsSlider.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/component/SwapButtonsSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/component/SwapButtonsSetting.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/component/VibrationEffectSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/component/VibrationEffectSetting.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/model/AppInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/model/AppInfo.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/navigation/AppNavigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/navigation/AppNavigation.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/screen/AppFilterScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/screen/AppFilterScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/screen/SettingsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/ui/screen/SettingsScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/util/AppFilterType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/util/AppFilterType.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/util/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/util/Constants.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/util/LSPosedLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/util/LSPosedLogger.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/util/RewindActionType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/util/RewindActionType.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/util/SharedPreferencesUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/util/SharedPreferencesUtil.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/util/StatusSysPropsHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/util/StatusSysPropsHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/util/SystemProps.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/util/SystemProps.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/util/VibratorUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/util/VibratorUtil.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/viewmodel/AppFilterViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/viewmodel/AppFilterViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/viewmodel/AppIconViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/viewmodel/AppIconViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/viewmodel/BootViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/viewmodel/BootViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/hepolise/volumekeytrackcontrol/viewmodel/BootViewModelFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/java/ru/hepolise/volumekeytrackcontrol/viewmodel/BootViewModelFactory.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_fast_forward_48dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/drawable/ic_fast_forward_48dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_skip_next_48dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/drawable/ic_skip_next_48dp.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/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/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values-ru-rRU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/values-ru-rRU/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/module_scope.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/values/module_scope.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/locales_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/app/src/main/res/xml/locales_config.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hepolise/VolumeKeyTrackControlModule/HEAD/settings.gradle.kts --------------------------------------------------------------------------------