├── .gitignore ├── LICENSE ├── README.md ├── RemoteBluetooth ├── .classpath ├── .project ├── AndroidManifest.xml ├── default.properties ├── proguard.cfg ├── res │ ├── drawable-hdpi │ │ └── icon.png │ ├── drawable-ldpi │ │ └── icon.png │ ├── drawable-mdpi │ │ └── icon.png │ ├── drawable │ │ └── icon.png │ ├── layout │ │ ├── custom_title.xml │ │ ├── device_list.xml │ │ ├── device_name.xml │ │ └── main.xml │ ├── menu │ │ └── option_menu.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── luugiathuy │ └── apps │ └── remotebluetooth │ ├── BluetoothCommandService.java │ ├── DeviceListActivity.java │ └── RemoteBluetooth.java └── RemoteBluetoothServer ├── .classpath ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── lib ├── bluecove-2.1.0.jar └── bluecove-gpl-2.1.0.jar └── src └── com └── luugiathuy └── apps └── remotebluetooth ├── ProcessConnectionThread.java ├── RemoteBluetoothServer.java └── WaitThread.java /.gitignore: -------------------------------------------------------------------------------- 1 | bin* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/README.md -------------------------------------------------------------------------------- /RemoteBluetooth/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetooth/.classpath -------------------------------------------------------------------------------- /RemoteBluetooth/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetooth/.project -------------------------------------------------------------------------------- /RemoteBluetooth/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetooth/AndroidManifest.xml -------------------------------------------------------------------------------- /RemoteBluetooth/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetooth/default.properties -------------------------------------------------------------------------------- /RemoteBluetooth/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetooth/proguard.cfg -------------------------------------------------------------------------------- /RemoteBluetooth/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetooth/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /RemoteBluetooth/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetooth/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /RemoteBluetooth/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetooth/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /RemoteBluetooth/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetooth/res/drawable/icon.png -------------------------------------------------------------------------------- /RemoteBluetooth/res/layout/custom_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetooth/res/layout/custom_title.xml -------------------------------------------------------------------------------- /RemoteBluetooth/res/layout/device_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetooth/res/layout/device_list.xml -------------------------------------------------------------------------------- /RemoteBluetooth/res/layout/device_name.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetooth/res/layout/device_name.xml -------------------------------------------------------------------------------- /RemoteBluetooth/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetooth/res/layout/main.xml -------------------------------------------------------------------------------- /RemoteBluetooth/res/menu/option_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetooth/res/menu/option_menu.xml -------------------------------------------------------------------------------- /RemoteBluetooth/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetooth/res/values/strings.xml -------------------------------------------------------------------------------- /RemoteBluetooth/src/com/luugiathuy/apps/remotebluetooth/BluetoothCommandService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetooth/src/com/luugiathuy/apps/remotebluetooth/BluetoothCommandService.java -------------------------------------------------------------------------------- /RemoteBluetooth/src/com/luugiathuy/apps/remotebluetooth/DeviceListActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetooth/src/com/luugiathuy/apps/remotebluetooth/DeviceListActivity.java -------------------------------------------------------------------------------- /RemoteBluetooth/src/com/luugiathuy/apps/remotebluetooth/RemoteBluetooth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetooth/src/com/luugiathuy/apps/remotebluetooth/RemoteBluetooth.java -------------------------------------------------------------------------------- /RemoteBluetoothServer/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetoothServer/.classpath -------------------------------------------------------------------------------- /RemoteBluetoothServer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetoothServer/.project -------------------------------------------------------------------------------- /RemoteBluetoothServer/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetoothServer/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /RemoteBluetoothServer/lib/bluecove-2.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetoothServer/lib/bluecove-2.1.0.jar -------------------------------------------------------------------------------- /RemoteBluetoothServer/lib/bluecove-gpl-2.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetoothServer/lib/bluecove-gpl-2.1.0.jar -------------------------------------------------------------------------------- /RemoteBluetoothServer/src/com/luugiathuy/apps/remotebluetooth/ProcessConnectionThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetoothServer/src/com/luugiathuy/apps/remotebluetooth/ProcessConnectionThread.java -------------------------------------------------------------------------------- /RemoteBluetoothServer/src/com/luugiathuy/apps/remotebluetooth/RemoteBluetoothServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetoothServer/src/com/luugiathuy/apps/remotebluetooth/RemoteBluetoothServer.java -------------------------------------------------------------------------------- /RemoteBluetoothServer/src/com/luugiathuy/apps/remotebluetooth/WaitThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/Remote-Bluetooth-Android/HEAD/RemoteBluetoothServer/src/com/luugiathuy/apps/remotebluetooth/WaitThread.java --------------------------------------------------------------------------------