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

2013-09-26 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

[android-developers] Xml file corrupted over sprint cellular network ?

2013-09-26 Thread Gaurav Sharma
I am having a very strange issue in my android app. I receive xml file from server and perform operation based on xml content. It is working on almost every network for eg. ATT, Verizon in USA, airtel, vodaphone and others in india.But it not working on sprint network USA. When i tried to

[android-developers] InApp Billing v3 and multiple accounts

2013-09-26 Thread Alexander Osmanov
Hello, I'm having a hard time with figuring out the right way to approach handling in app purchases for users with multiple accounts. I am using Appengine Endpoints to implement my server side API. This API returns some data to my users. As soon as user purchases a certain product API will

[android-developers] ASUS tablet

2013-09-26 Thread eli
I am using Eclipse and am able to communicate with a XOOM tablet for USB debugging. However if I use an ASUS tablet Windows XP does not see it if I have the USB debugging option selected. Has anybody solved this problem. -- You received this message because you are subscribed to the Google

[android-developers] Re: InApp Billing v3 and multiple accounts

2013-09-26 Thread b0b
IAP with multiple accounts is in my opinion *broken*, even if I suspect current behaviour is how Google intended it. In my experience, in the presence of multiple accounts, the IAP code will always pickup the first listed account, in the device's Google account list in Settings, which may not

Re: [android-developers] What is difference between the Android App downloaded using Google Play store and the one directly installed?

2013-09-26 Thread gauri
Thanks for your help. I downloaded and installed one paid Android app using Google Play Store in phone with Android OS 4.3. I wrote one test application which enumerates list of installed apps and prints apk download location them. When I tested this app, I found that, this paid app was

[android-developers] Re: Xml file corrupted over sprint cellular network ?

2013-09-26 Thread Nobu Games
Could you post an example of such a corrupted version of your XML files? Maybe as a hex dump? On Thursday, September 26, 2013 4:01:31 AM UTC-5, Gaurav Sharma wrote: I am having a very strange issue in my android app. I receive xml file from server and perform operation based on xml content.

Re: [android-developers] Re: Xml file corrupted over sprint cellular network ?

2013-09-26 Thread Robert Greenwalt
There have been cases in the past where a carrier has intercepted and alterned content flowing over their network - most notably graphics getting down-rezed or compressed. I'd not heard of this happening on xml, but the fact that changing networks fixes the problem suggests something like this

[android-developers] Navite Navigation Drawer

2013-09-26 Thread Simon Giddings
I have seen the Navigation Drawer and am interested in it for my v4.1 tablet application. However, I see that the documentation describes it as being within the support library. My understanding was that this library was mainly for apps in and before v2.3 of android. Is there not a native

Re: [android-developers] Re: Xml file corrupted over sprint cellular network ?

2013-09-26 Thread Gaurav Sharma
Thank for response @Nobu : I tried to tump it but was not able to dump it and yes changing the network is working fine. If i switch to ATT or some other network provider it is working like a charm. @Robert: I am using Http protocol to transfer file. On Thu, Sep 26, 2013 at 9:17 PM, Robert

Re: [android-developers] Re: Xml file corrupted over sprint cellular network ?

2013-09-26 Thread Michael Banzon
On other platforms (desktop) I very often see XML payloads messed up over HTTP by proxies. Usually some request/response header to signal no use of proxy fixes the issue. (This might not be the case for you though) On Thu, Sep 26, 2013 at 8:03 PM, Gaurav Sharma gauravsharma...@gmail.com wrote:

Re: [android-developers] Re: Xml file corrupted over sprint cellular network ?

2013-09-26 Thread Gaurav Sharma
@Michael : thanks for your valuable suggestion but i am using cellular network. On Thu, Sep 26, 2013 at 11:49 PM, Michael Banzon mich...@banzon.dk wrote: On other platforms (desktop) I very often see XML payloads messed up over HTTP by proxies. Usually some request/response header to signal

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

2013-09-26 Thread 12169
Hi , can you please explain...or provide demo wt to do? On Wednesday, September 25, 2013 11:53:14 PM UTC-7, Andrew Mackenzie wrote: 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

Re: [android-developers] Android screen capture delay due to writing data in the file..

2013-09-26 Thread 12169
Hi, i do not have understanding of native developement. can you read data directly from fram-buffer which actually hold the data while capturing the image. On Wednesday, September 18, 2013 5:03:19 PM UTC-7, Baodong Chen wrote: Of course you can,but you should use native code to do that,

Re: [android-developers] Re: Xml file corrupted over sprint cellular network ?

2013-09-26 Thread Michael Banzon
There still might be a proxy in between - wouldn't be the first time an ISP shoved that in there ;-) On Thu, Sep 26, 2013 at 8:50 PM, Gaurav Sharma gauravsharma...@gmail.com wrote: @Michael : thanks for your valuable suggestion but i am using cellular network. On Thu, Sep 26, 2013 at 11:49

[android-developers] problem centering the camera in Maps V2

2013-09-26 Thread Gary Blakely
In my android app I have the following code... CameraUpdate center= CameraUpdateFactory.newLatLng(new LatLng(Lat,Lon)); DebugLog.debugLog(centered camera on + Lat + and + Lon, false); CameraUpdate zoom=CameraUpdateFactory.zoomTo(15); map.moveCamera(center);