[android-developers] android proguard is not working for the that is activated by the reflection?

2013-09-25 Thread Andrew Mackenzie
Look at the classes youbarebusing tibdi that, then add instructions to your proguard config file (in project root) to have it NOT obfuscate or remove those classes or methods or the classes or methods they access by name. -- You received this message because you are subscribed to the Google Gro

[android-developers] New library to serialize/convert primitives to byte arrays and back again...

2013-09-25 Thread Richard Schilling
Just FYI, I've announced a pre-release of a library that is built for Android which will convert Java primitives (and primitive arrays) to byte arrays and back again: http://rschilling.wordpress.com/2013/09/26/pre-release-announcement-pend-oreille/ License: GPL v2. I wrote it because marshalli

[android-developers] Re: in-app billing disconnects from activity on configuration change

2013-09-25 Thread Ted Hopp
But the event is initiated by the user---when the user starts an in-app purchase. Also, the IAB flow involves user interaction to complete the purchase. The sample appthat Google provides initiates the purcha

[android-developers] Re: in-app billing disconnects from activity on configuration change

2013-09-25 Thread Ian Ni-Lewis
It seems like the main problem is that you're initiating IAB from an activity, not a service. Activity lifetime is governed primarily by user actions, so an activity is rarely the right container for something that needs to respond to events that aren't initiated by the user. On Tuesday, Septem

[android-developers] Calendar API has an awkward behaviour

2013-09-25 Thread drjunior
I have this piece of code that creates events with repetition (RRULE) in the main user's calendar: Calendar beginTime = Calendar.getInstance(); #increment one day to the actual time (just for precaution) beginTime.add(Calendar.HOUR, 1); beginTime.add(Calendar.DAY_OF

Re: [android-developers] horizontal manager alignment of its child view?

2013-09-25 Thread goran gg
http://stackoverflow.com/questions/6992804/how-to-right-align-widget-in-horizontal-linear-layout-android 2013/9/24 ashish > Hi, > these fields are available in relative layout...but i am using horizontal > layout... > > On Tuesday, September 24, 2013 2:25:56 AM UTC-7, goran gg wrote: >> >> andr

[android-developers] Re: Bluetooth Low Energy Encrypted Characteristic Read Write

2013-09-25 Thread gjs
Hi, So far I've only used BLE successfully with devices that don't need to use encryption, however the docs seem to infer that BluetoothGattCharacteristic requires setWriteType (int writeType) where writeType is WRITE_TYPE_SIGNED - Write characteristic including authentication signature - prio