[android-developers] Re: Best practice for co-ordinating a SyncAdapter and GCM updates of data within an app

2013-07-20 Thread Piren
Just use a queue to feed the IntentService (or have a queue in it). On Wednesday, July 17, 2013 12:51:57 PM UTC+3, fr1550n wrote: > > My app uses a SyncAdapter to periodically sync server data to SQLite. It > also syncs in response to a GCM message that indicates new/updated server > data; via.a

[android-developers] Re: Obfuscating Android Library Project

2013-07-20 Thread Piren
I haven't tried to obfuscate a jar file after it is made, but you can definitely obfuscate it when you build the library project. Just remember to put up rules as to not obfuscate all the public methods you'd like to use as the API for the library (which i guess you forgot). On Friday, July 19,

[android-developers] How to turn off/disable NFC programmataically?

2013-07-20 Thread thsecmaniac
Hello, How to turn off/disable NFC programmatically when I close my application or when my application is idle? -- -- 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 T

[android-developers] Re: can not set preview buffer format to nv21 on nexus 4

2013-07-20 Thread Sanchiski
I think you got a bit confused. Use NV21 for setPreviewFormat (which is YUV420sp), and Jpeg for setPictureFormat. If you want to process RGB pixels on the "onPictureTaken" callback which is when a picture is taken, then use the next line: public void onPictureTaken(final byte[] data, final Came

[android-developers] Ash Pat

2013-07-20 Thread Ash Pat
http://cng.20e.in/kjskte/tfhwgu.pgtnthoqsmegmwrt -- -- 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 unsubscribe from this group, send email to android-developers+u

[android-developers] Re: Google Wallet Issues

2013-07-20 Thread Nathan
On Saturday, July 20, 2013 3:12:04 AM UTC-7, Terry wrote: > > A lot seem to have happened with Google Wallet lately(!) > > One problem is that I am no longer able to verify/check the amounts > reported for my apps that have been sold. > > 1. When I add upp the "Estimated Net Revenue" shown for e

[android-developers] Stretch videostrong

2013-07-20 Thread bob
Anyone know if there's an easy way to scale a VideoView so the video takes up the whole screen? I want it to be "stretched". Thanks. -- -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-develop

[android-developers] Google Wallet Issues

2013-07-20 Thread Terry
A lot seem to have happened with Google Wallet lately(!) One problem is that I am no longer able to verify/check the amounts reported for my apps that have been sold. 1. When I add upp the "Estimated Net Revenue" shown for each order (for one day), they do NOT add up to the amount shown on Payo

Re: [android-developers] The purpose of resource name "mipmap"?!

2013-07-20 Thread Yuku Sugianto
It seems that many Google apps use @mipmap/ic_launcher instead of @drawable/ic_launcher. What are the advantages of this? Is there any guide how to use mipmaps, probably for better launcher icons? -- -- You received this message because you are subscribed to the Google Groups "Android Devel