├── .gitignore ├── .idea ├── .gitignore ├── AndroidProjectSystem.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── deploymentTargetDropDown.xml ├── deploymentTargetSelector.xml ├── gradle.xml ├── migrations.xml ├── misc.xml ├── render.experimental.xml ├── runConfigurations.xml └── vcs.xml ├── IMG_20220717_143342.jpg ├── LICENSE ├── README.md ├── Screenshot_2023-01-11-23-16-41-287-edit_com.app.bluetoothremote.jpg ├── Screenshot_2023-01-11-23-17-00-542-edit_com.app.bluetoothremote.jpg ├── Screenshot_2023-01-11-23-17-39-559-edit_com.app.bluetoothremote.jpg ├── The ONLY FREE_ad-free Bluetooth Remote! - Bluetooth Remote.png ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── release │ └── app-release.aab └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── app │ │ └── bluetoothremote │ │ ├── BluetoothHidService.java │ │ ├── BluetoothTileService.java │ │ ├── BondedDevice.java │ │ ├── Constants.java │ │ ├── HidUtils.java │ │ ├── KeyboardHelper.java │ │ ├── KeyboardReport.java │ │ ├── MainActivity.java │ │ ├── MouseHelper.java │ │ ├── MouseReport.java │ │ ├── NotificationBroadcastReceiver.java │ │ ├── RemoteControlHelper.java │ │ └── RemoteControlReport.java │ └── res │ ├── drawable-anydpi │ └── remote_control.xml │ ├── drawable-hdpi │ └── remote_control.png │ ├── drawable-mdpi │ └── remote_control.png │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable-xhdpi │ └── remote_control.png │ ├── drawable-xxhdpi │ └── remote_control.png │ ├── drawable │ ├── bluetooth_searching_24.xml │ └── ic_launcher_background.xml │ ├── layout │ ├── activity_main.xml │ ├── notification_buttons.xml │ ├── options_menu.xml │ └── popup_bluetooth_discovery.xml │ ├── menu │ └── menu.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── btn_power.png │ ├── ic_launcher.webp │ ├── ic_launcher_round.webp │ └── remote_control_launcher.png │ ├── mipmap-mdpi │ ├── btn_power.png │ ├── ic_launcher.webp │ ├── ic_launcher_round.webp │ └── remote_control_launcher.png │ ├── mipmap-xhdpi │ ├── btn_power.png │ ├── ic_launcher.webp │ ├── ic_launcher_round.webp │ └── remote_control_launcher.png │ ├── mipmap-xxhdpi │ ├── btn_power.png │ ├── ic_launcher.webp │ ├── ic_launcher_round.webp │ └── remote_control_launcher.png │ ├── mipmap-xxxhdpi │ ├── btn_power.png │ ├── ic_launcher.webp │ ├── ic_launcher_round.webp │ └── remote_control_launcher.png │ ├── values-land │ └── dimens.xml │ ├── values-night │ └── themes.xml │ ├── values-w1240dp │ └── dimens.xml │ ├── values-w600dp │ └── dimens.xml │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── attrs.xml │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ ├── styles.xml │ └── themes.xml ├── bluetooth remote disabled.png ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/AndroidProjectSystem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/.idea/AndroidProjectSystem.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetSelector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/.idea/deploymentTargetSelector.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/.idea/migrations.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/render.experimental.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/.idea/render.experimental.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /IMG_20220717_143342.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/IMG_20220717_143342.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot_2023-01-11-23-16-41-287-edit_com.app.bluetoothremote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/Screenshot_2023-01-11-23-16-41-287-edit_com.app.bluetoothremote.jpg -------------------------------------------------------------------------------- /Screenshot_2023-01-11-23-17-00-542-edit_com.app.bluetoothremote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/Screenshot_2023-01-11-23-17-00-542-edit_com.app.bluetoothremote.jpg -------------------------------------------------------------------------------- /Screenshot_2023-01-11-23-17-39-559-edit_com.app.bluetoothremote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/Screenshot_2023-01-11-23-17-39-559-edit_com.app.bluetoothremote.jpg -------------------------------------------------------------------------------- /The ONLY FREE_ad-free Bluetooth Remote! - Bluetooth Remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/The ONLY FREE_ad-free Bluetooth Remote! - Bluetooth Remote.png -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/release/app-release.aab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/release/app-release.aab -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/app/bluetoothremote/BluetoothHidService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/java/com/app/bluetoothremote/BluetoothHidService.java -------------------------------------------------------------------------------- /app/src/main/java/com/app/bluetoothremote/BluetoothTileService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/java/com/app/bluetoothremote/BluetoothTileService.java -------------------------------------------------------------------------------- /app/src/main/java/com/app/bluetoothremote/BondedDevice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/java/com/app/bluetoothremote/BondedDevice.java -------------------------------------------------------------------------------- /app/src/main/java/com/app/bluetoothremote/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/java/com/app/bluetoothremote/Constants.java -------------------------------------------------------------------------------- /app/src/main/java/com/app/bluetoothremote/HidUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/java/com/app/bluetoothremote/HidUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/app/bluetoothremote/KeyboardHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/java/com/app/bluetoothremote/KeyboardHelper.java -------------------------------------------------------------------------------- /app/src/main/java/com/app/bluetoothremote/KeyboardReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/java/com/app/bluetoothremote/KeyboardReport.java -------------------------------------------------------------------------------- /app/src/main/java/com/app/bluetoothremote/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/java/com/app/bluetoothremote/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/app/bluetoothremote/MouseHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/java/com/app/bluetoothremote/MouseHelper.java -------------------------------------------------------------------------------- /app/src/main/java/com/app/bluetoothremote/MouseReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/java/com/app/bluetoothremote/MouseReport.java -------------------------------------------------------------------------------- /app/src/main/java/com/app/bluetoothremote/NotificationBroadcastReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/java/com/app/bluetoothremote/NotificationBroadcastReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/com/app/bluetoothremote/RemoteControlHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/java/com/app/bluetoothremote/RemoteControlHelper.java -------------------------------------------------------------------------------- /app/src/main/java/com/app/bluetoothremote/RemoteControlReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/java/com/app/bluetoothremote/RemoteControlReport.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/remote_control.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/drawable-anydpi/remote_control.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/remote_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/drawable-hdpi/remote_control.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/remote_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/drawable-mdpi/remote_control.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/remote_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/drawable-xhdpi/remote_control.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/remote_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/drawable-xxhdpi/remote_control.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/bluetooth_searching_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/drawable/bluetooth_searching_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/notification_buttons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/layout/notification_buttons.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/options_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/layout/options_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/popup_bluetooth_discovery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/layout/popup_bluetooth_discovery.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/menu/menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/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/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/btn_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/mipmap-hdpi/btn_power.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/remote_control_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/mipmap-hdpi/remote_control_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/btn_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/mipmap-mdpi/btn_power.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/remote_control_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/mipmap-mdpi/remote_control_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/btn_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/mipmap-xhdpi/btn_power.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/remote_control_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/mipmap-xhdpi/remote_control_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/btn_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/mipmap-xxhdpi/btn_power.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/remote_control_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/mipmap-xxhdpi/remote_control_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/btn_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/mipmap-xxxhdpi/btn_power.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/remote_control_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/mipmap-xxxhdpi/remote_control_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/values-land/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w1240dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/values-w1240dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/values-w600dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /bluetooth remote disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/bluetooth remote disabled.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedamoharram/bluetooth-remote/HEAD/settings.gradle --------------------------------------------------------------------------------