[android-developers] Are developers keen on using the latest Android 4.2 and stop supporting Android 4.0 and 4.1?

2013-03-30 Thread tom_mai78101
I had a bug that occured when Android 4.0 and Android 4.1 both tried to share a Bluetooth connection. I was denied support for those two versions and was asked for trying to test it on Android 4.2. The main problem for me would be the lack of hardware available to use. I don't have Android

[android-developers] Re: Why aren't there OpenGL ES 2.0 tutorials for Android on Youtube?

2013-03-29 Thread tom_mai78101
I have seen it, but it doesn't answer my question. Why aren't OpenGL ES 2.0 video tutorials available on the net? -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com

Re: [android-developers] Android Bluetooth: I get Connection Refused after unpairing two devices, invoke user pairing, and accepting/listening connections.

2013-02-15 Thread tom_mai78101
Then I don't understand why it's failing to connect. Most of the error exception log messages point to either UUID is wrong or I'm not cancelling BluetoothAdapter discovery. I had looked back at the BluetoothChat SDK Sample, compared it with my codes, and see no significant differences other

Re: [android-developers] Android Bluetooth: I get Connection Refused after unpairing two devices, invoke user pairing, and accepting/listening connections.

2013-02-15 Thread tom_mai78101
Re-reading Android Reference, it said the UUID needs to be the same for both the server-side and the client-side. UUID.randomUUID() and BluetoothDevice.getUuids() are sure to fail. I hate it, but it looks like I need to set up to 7 constant (final) UUIDs without generating them at

Re: [android-developers] Android Bluetooth: I get Connection Refused after unpairing two devices, invoke user pairing, and accepting/listening connections.

2013-02-15 Thread tom_mai78101
Why is generating them and sticking them in your code bad? Why do you hate it? This is standard practice in many situations, so much that IDEs do it for you sometimes. I disliked having to generate them and stick them into my code, for fear of security. And I never recalled my IDE

[android-developers] Here's how to use ADB Shell command to run HTC Sense on HTC devices.

2013-02-15 Thread tom_mai78101
ADB command below: adb shell am start -a android.intent.ACTION_MAIN -n com.htc.launcher/.Launcher -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

Re: [android-developers] Android Bluetooth: I get Connection Refused after unpairing two devices, invoke user pairing, and accepting/listening connections.

2013-02-14 Thread tom_mai78101
I don't think ports matter in this case. In fact, I don't need ports. Thanks anyway. *BEWARE: Wall of text* I have now narrowed down my problem, hopefully reaching a conclusion soon. I'm having trouble with fetching one single UUID for two devices to use. Here's a picture of what I have

[android-developers] Re: Android Bluetooth: I get Connection Refused after unpairing two devices, invoke user pairing, and accepting/listening connections.

2013-02-07 Thread tom_mai78101
I did a Pastebin for those who don't want to download the attachment. For your convienence. Pastebin http://pastebin.com/jFDjWTc7 -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to