Bluetoothベースのアプリケーションを実行しています.nokiaデバイスやプリンターなどの他のデバイスを接続したいです。
Android Bluetooth ドキュメントhttp://developer.android.com/guide/topics/connectivity/bluetooth.htmlを参照します。それはすべての基本的な Bluetooth API 機能を示しています。そして、これらすべてのことを行いました。
Scanning for other Bluetooth devices
Querying the local Bluetooth adapter for paired Bluetooth devices
Establishing RFCOMM channels/sockets
Connecting to a remote device
Transfering data over Bluetooth
AndroidのサンプルであるBluetoothChatから参照を取得します。
BluetoothChat This application send data to another android device but for that this application must be installed in both the devices.
このようにコードでBluetooth経由でAndroidデバイスから他のデバイスにファイルを送信する方法
私が欲しいのは
- アプリケーションからあるデバイスから別のデバイスにファイルを送信したいのですが、アプリケーションを実行していない別のデバイスでも機能します。つまり、レシーバー デバイスは、デフォルトの Bluetooth を使用してファイルを受信することもできます。
これはアンドロイドで可能ですか?