Re: [android-developers] GamesClient.Builder NoClassDefFoundError in runtime

2013-07-07 Thread Yaron Reinharts
Right click project properties, Android. Make sure you are targeting Google API X.X instead of Android X.X. Hope this helps /Yaron On 07/03/2013 11:54 AM, Davide Moriello wrote: java.lang.NoClassDefFoundError: com.google.android.gms.games.GamesClient$Builder -- Yaron Reinharts Smart Drive

Re: [android-developers] how to fire intent when net is connected

2013-07-07 Thread Yaron Reinharts
Or javamail-android: http://code.google.com/p/javamail-android/ On 07/04/2013 07:16 PM, Kristopher Micinski wrote: On Thu, Jul 4, 2013 at 1:51 AM, vinay kumar vk872...@gmail.com wrote: Probably you want to send the email without user interaction. This can't be achieved with android Intent

Re: [android-developers] How i can programatically downlaod our emails from gmail account ?

2013-07-07 Thread Yaron Reinharts
http://code.google.com/p/javamail-android/ On 07/04/2013 12:20 PM, Ashish Sharma wrote: Hi, I want to downaload mails from my gmail account..is there any why? -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: USBConnection: bulkTransfer OUT = after sending 10-15 x Data's every 4 seconds = USB is disconnected, every time.

2013-07-07 Thread Giuseppe
all code please. -- -- 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+unsubscr...@googlegroups.com For

Re: [android-developers] GamesClient.Builder NoClassDefFoundError in runtime

2013-07-07 Thread davidemo89
Hi, I've fixed it adding this meta-data android:name=com.google.android.gms.games.APP_ID android:value=@string/app_id / on my manifest =) On 7 July 2013 08:09, Yaron Reinharts yaron.reinha...@gmail.com wrote: Right click project properties, Android. Make sure you are targeting

[android-developers] Re: Location Listener event when not online

2013-07-07 Thread Piren
It doesn't need internet. Verify that you've asked for the FINE GPS permission (rather than coarse which does need a connection) and i'd also make sure to have a wake lock (a better approach is to user an alarm to query the location periodically) otherwise i doubt onLocationChanged would be

[android-developers] Large amount of orders not complete over this weekend

2013-07-07 Thread niko20
I had over 34 orders yesterday, but most of them are in the non-green state yet for some reason. I only got payout of about 10 of them. Anyone else seeing this issue? Usually they turn full green (both dots are green in the google checkout report list, shipped and charged - right now shipped

[android-developers] Re: Large amount of orders not complete over this weekend

2013-07-07 Thread niko20
In fact I haven't had an order finish charged since July 4th at 5pm or so. Since then, they are all shipped but not charged. I've never seen this happen before On Sunday, July 7, 2013 7:25:43 AM UTC-6, niko20 wrote: I had over 34 orders yesterday, but most of them are in the non-green

[android-developers] Re: Large amount of orders not complete over this weekend

2013-07-07 Thread AndroidYourself
Same here. Income amount drops about 50% the last 2 days. -- -- 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] Re: USBConnection: bulkTransfer OUT = after sending 10-15 x Data's every 4 seconds = USB is disconnected, every time.

2013-07-07 Thread AndroidYourself
UsbDeviceConnection usbConnection = usbManager.openDevice(device); UsbInterface usbInterface = device.getInterface(0); UsbEndpoint usbEndpointIN = null; UsbEndpoint usbEndpointOUT = null; for (int e = 0; e usbInterface.getEndpointCount(); e++) { UsbEndpoint ep =

[android-developers] Re: Large amount of orders not complete over this weekend

2013-07-07 Thread b0b
On Sunday, 7 July 2013 15:25:43 UTC+2, niko20 wrote: I had over 34 orders yesterday, but most of them are in the non-green state yet for some reason. I only got payout of about 10 of them. Anyone else seeing this issue? Usually they turn full green (both dots are green in the google

Re: [android-developers] Google direction API

2013-07-07 Thread Sunny
Hi TreKing, thank you for your response. to answer to your question, I did removed the space and tried with a comma - there is no change in the behavior. I am wondering if you can think of any tips or others can chip in.. i posted this question at multiple sites. I will let you know if I get

Re: [android-developers] Google direction API

2013-07-07 Thread TreKing
On Sat, Jul 6, 2013 at 8:52 PM, Sunny menon1...@gmail.com wrote: It doesn't matter whether you put a comma or a space, the behavior is : it works well with a space or comma when you are invoking it on the browser. It does not work when you do the same from an android code. Then there is

Re: [android-developers] how to fire intent when net is connected

2013-07-07 Thread Kristopher Micinski
Sure. That's the Android specific version of the thing to which I was referring On Jul 7, 2013 2:27 AM, Yaron Reinharts yaron.reinha...@gmail.com wrote: Or javamail-android: http://code.google.com/p/javamail-android/ On 07/04/2013 07:16 PM, Kristopher Micinski wrote: On Thu, Jul 4, 2013 at

[android-developers] WebView - can't set its position..

2013-07-07 Thread AmitNHB
Hello, I feel this should be very basic but I can't seem to be able to set the position of a WebView. I have a my surface (which extends SurfaceView) and an AdView at the bottom and now I want to add a WebView and position it at a certain height on the screen. I do this, trying to position my

[android-developers] Re: WebView - can't set its position..

2013-07-07 Thread AmitNHB
Please ignore this line: *webView**.setVisibility(View.GONE**);* I'm setting it back to visible later on and like I said, the view starts at the very top instead of at 120. On Monday, July 8, 2013 3:59:37 AM UTC+3, AmitNHB wrote: Hello, I feel this should be very basic but I can't seem to

[android-developers] Re: Large amount of orders not complete over this weekend

2013-07-07 Thread Nathan
On Sunday, July 7, 2013 7:25:43 AM UTC-6, niko20 wrote: I had over 34 orders yesterday, but most of them are in the non-green state yet for some reason. I only got payout of about 10 of them. Anyone else seeing this issue? Usually they turn full green (both dots are green in the google

[android-developers] Re: WebView - can't set its position..

2013-07-07 Thread AmitNHB
OK, got it: *webView = new WebView(this); webView.setWebViewClient(new WebViewClient());RelativeLayout.LayoutParams webViewParams= new RelativeLayout.LayoutParams(800, 240); webViewParams.addRule(RelativeLayout.CENTER_IN_PARENT);* On Monday, July 8, 2013 3:59:37 AM UTC+3, AmitNHB wrote: