tags:

views:

197

answers:

1

Hi,

I want to install a Bluetooth Application over my G1 device in linux environment.Please any Body provide me the procedure for this ? Whenever i am installing the application following error was thrown:-

adb install /home/parveen/workspace/BluetoothChat/bin/BluetoothChat.apk 337 KB/s (28084 bytes in 0.081s) pkg: /data/local/tmp/BluetoothChat.apk Failure [INSTALL_FAILED_ALREADY_EXISTS]**

Please help me out of this?

Thanks in Advance Praween.

+1  A: 

The error message seems to indicate that the application is already installed!

However, to reinstall the application....

adb install -r /home/parveen/workspace/BluetoothChat/bin/BluetoothChat.apk

"-r" means reinstall

Sid NoParrots