[android-developers] Run custom android without rooting device

2014-10-27 Thread pedr0
Hello everyone, I would like compile and run on a real device my custom Android OS without root it, would that be possible in some way ? Can I use the bootloader to fetch an image from USB/network and boot that ? I have the feeling this is not possible at all but I am asking to a

[android-developers] Android Studio Editor feature

2014-10-27 Thread Doug Gordon
After years of using Eclipse, I'm making the transition to Android Studio and am still mystified by some of what I see. The latest surprise was when I opened a source file to make an edit and saw that I apparently had hard-coded a string even though I was sure that I

[android-developers] Ideal Bluetooth Service

2014-10-27 Thread 'RLScott' via Android Developers
I have implemented Bluetooth in several of my projects where the Android device is the user interface to a custom device with a Bluetooth module using the SPP profile (serial port replacement). But I want to clean up my code and make it more robust. Since I expect to be doing more of these

[android-developers] Re: Ideal Bluetooth Service

2014-10-27 Thread 'RLScott' via Android Developers
After I posted this question I found a reference to using Messenger that seemed to indicate it was about as lightweight as Binder, being just a wrapper for it. And I have a nice example of using Messenger for 2-way communication here on Stack Overflow