I have the same problem.
On Mon, Oct 28, 2013 at 2:10 AM, <[email protected]>wrote: > Today's Topic Summary > > Group: http://groups.google.com/group/android-developers/topics > > - AndroidPushNotification <#141fdb82e555ce54_group_thread_0> [1 Update] > - android connectivity manager <#141fdb82e555ce54_group_thread_1> [1 > Update] > - Coupon Code <#141fdb82e555ce54_group_thread_2> [4 Updates] > - [No Subject] <#141fdb82e555ce54_group_thread_3> [1 Update] > - setMinDate(…) for DatePicker doesn't work when invoked a second > time<#141fdb82e555ce54_group_thread_4>[1 Update] > - Help needed -- There is no linked app associated with this client > ID.<#141fdb82e555ce54_group_thread_5>[1 Update] > - ADB over TCP/IP keeps timing out <#141fdb82e555ce54_group_thread_6>[1 > Update] > > > AndroidPushNotification<http://groups.google.com/group/android-developers/t/48b69991ff06c97b> > > janvi <[email protected]> Oct 27 08:51PM -0700 > > Thank you :) > > On Friday, October 25, 2013 8:56:32 AM UTC+5:30, TreKing wrote: > > > > android connectivity > manager<http://groups.google.com/group/android-developers/t/a18c81bea422be53> > > janvi <[email protected]> Oct 27 08:51PM -0700 > > Hello All, > > I have a query here regarding how to find whether our phone has > internet > connected or not. > > Using the following code > > ConnectivityManager cm = > > > (ConnectivityManager)context.getSystemService(Context.CONNECTIVITY_SERVICE); > > NetworkInfo activeNetwork = cm.getActiveNetworkInfo(); > boolean isConnected = activeNetwork != null && > activeNetwork.isConnectedOrConnecting(); > > > I was able to get the status based on the wifi connection of my phone. > > If wifi is switched on then i was getting isConnected as true else off. > > what if router to which we are connecting has only LAN > connection????Then here we cannot access internet but above code still > shows > isConnected as true which is wrong. > > In android to we have any API which tells whether the router through > which we are connecting has LAN enabled or WAN enabled > > Thanks in advance > > > > Coupon > Code<http://groups.google.com/group/android-developers/t/d418273d6c6a1f2e> > > Steve Gabrilowitz <[email protected]> Oct 27 12:32PM -0400 > > > > On Fri, Oct 25, 2013 at 10:39 AM, Steve Gabrilowitz < > [email protected]> > wrote: > > >> It's a bit of a hassle, but instead of using promo/coupon codes you > ask > the target group you want to "comp" your app to forward their play > store > receopt to you, then you look up the order and refund it. > > > Refunding an order makes the buyer unable to download updates or > redownload the app if they ever uninstall it. You might as well just > email > them the APK. > > I don't know if this used to be the case at one time but I have done > this > and it does not work as you said. > > > >> Only other thing I can think of is to put a second copy of the app > in > the play store using a different package name and make it free but > limit > access to it by unpublishing it when the promotion is over > > > Then any number of people have access to the app. > > >> , or use the beta/alpha APK feature to limit distribution that way. > > > Beta / Alpha does not make a paid app free. People still need to own > the > app in order to receive the beta / alpha. > > This is correct but re-read what I said ;-) > > > > > ------------------------------------------------------------------------------------------------- > > http://groups.google.com/group/android-developers?hl=en > > --- > > You received this message because you are subscribed to the Google > Groups > "Android Developers" group. > > To unsubscribe from this group and stop receiving emails from it, > send an > email to [email protected]. > > > > > TreKing <[email protected]> Oct 27 04:41PM -0500 > > > > I don't know if this used to be the case at one time but I have done > this > > and it does not work as you said. > > > Wait ... you've refunded / canceled an order and that person was still > able > to download the app and / or update it without paying again? > > > > ------------------------------------------------------------------------------------------------- > TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago > transit tracking app for Android-powered devices > > > > > Steve Gabrilowitz <[email protected]> Oct 27 06:06PM -0400 > > That is correct. I remember a while back we had the option of either > refunding or cancelling an order (after a waiting period that I > believe to > be 8 hours) and I think we could even give a partial refund. Now you > get a > cancel button during the first 8 hours and then when the order is > completely processed you have only a refund button. It appears that > once > the transaction is complete and past the waiting period the developer > has > no way to revoke the license. Another developer turned me on to this > fact > when I was beta testing his app and I in turn have used it with a > couple of > my beta testers. > > > > > TreKing <[email protected]> Oct 27 10:05PM -0500 > > > order is completely processed you have only a refund button. It > appears > > that once the transaction is complete and past the waiting period the > > developer has no way to revoke the license. > > > Very interesting. You'd think Google would have communicated this > somehow > or made this policy clear somewhere (if they have, I missed it and > haven't > found anything). > > Thanks for sharing. > > > > ------------------------------------------------------------------------------------------------- > TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago > transit tracking app for Android-powered devices > > > > [No > Subject]<http://groups.google.com/group/android-developers/t/35c2a52238fbfa5b> > > "Daniel Rodríguez Millán" <[email protected]> Oct 27 10:20PM +0100 > > > > > setMinDate(…) for DatePicker doesn't work when invoked a second > time<http://groups.google.com/group/android-developers/t/35d95eba62da4c79> > > Binoy Babu <[email protected]> Oct 27 07:53AM -0700 > > I'm in a particular situation in which I have to alter the min and max > date > of DatePicker according to the selected element of a Spinner. Here's > the > chunk of code I'm using to switch min and max date. > > private void switchCalculationMethod(int method) { > calculationMethod = method; > switch (method) { > case METHOD_1: > datePicker.setMinDate(new > LocalDate().minusWeeks(42).toDateTimeAtStartOfDay() > .getMillis()); > datePicker.setMaxDate(new > LocalDate().plusDays(1).toDateTimeAtStartOfDay() > .getMillis() - 1); > break; > case METHOD_2: > datePicker.setMinDate(new > LocalDate().minusWeeks(2).toDateTimeAtStartOfDay() > .getMillis()); // This don't work!! > datePicker.setMaxDate(new > LocalDate().plusWeeks(40).toDateTimeAtStartOfDay() > .getMillis()); // This works!!! > break; > } > datePicker.init(today.getYear(), today.getMonthOfYear() - 1, > today.getDayOfMonth(), this); > } > > So, the DatePicker would get set up correctly the first time, problem > occurs when I attempt to change the min date again (*changing max date > works > *). It would remain at the value I had set first. I'm thinking this is > a > bug (would be great if this can be confirmed). But I thought I'd post > it > here because I might be doing something wrong. > > *PS* : I'm using Joda time api. > > > > Help needed -- There is no linked app associated with this client > ID.<http://groups.google.com/group/android-developers/t/5c5da6fe9acb8c09> > > FReDD <[email protected]> Oct 27 02:50AM -0700 > > Hi all, > > I'm becoming crazy with this one. I just published a game on Google > Play > and the game uses the Google Play Games services. > > Sign-in and leaderboards / achievements worked fined with the > application > signed with the debug key, but since I built and > published my app using my release key, Google+ sign-on is impossible. > I > always get the infamous error > *"E/SignInIntentService(25004): There is no linked app associated with > this > client ID."* > > I double- and triple-checked everything : my app is published, the > package > name and SHA1 fingerprint are correct and match > what I extracted from the release APK, I unlinked and relinked the app > in > the Google Play Console multiple times, but nothing > works. > > Ideas, anyone ? > > Thanks > > > > ADB over TCP/IP keeps timing > out<http://groups.google.com/group/android-developers/t/ec15b8068f89df19> > > hegde <[email protected]> Oct 27 12:17AM -0700 > > I had similar problem but with emulator. I could not fix the problem. > But > instead I downloaded and installed Android studio, which much more > stable. > > On Sunday, October 27, 2013 5:26:58 AM UTC+5:30, Leith Bade wrote: > > > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en > --- > You received this message because you are subscribed to the Google Groups > "Android Developers" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en --- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

