[android-developers] Help - Google has terminated my Developer Account

2014-08-01 Thread Terry


After two incidents – of which I think I was completely innocent – Google 
has terminated my Play Store Developer Account. Consequently all of my apps 
– developed over three years – are gone from the Play Store. 

The first incident was a false DMCA takedown, due to a bogus DMCA 
complaint. Google informed me that the case would be taken to court by the 
complaining party, but that never happened. 

The second was the removal of one of my apps – which I think was done by a 
mistake. 

Those who are interested can read about these two cases here: 

https://groups.google.com/forum/#!topic/android-developers/vZ7mKPIe5U4

and

https://groups.google.com/forum/#!topic/android-developers/qqo2dmC6Xm8 

I have tried to approach Google in various ways – hoping that they could 
have a second look at my case – but they never seem to answer. 

In the “real world” one is considered innocent until proven guilty.

Not so by Google. If they think that you are guilty, your are guilty. And 
there is no way to appeal. 

I must admit that I still hope that someone inside Google will have a look 
at my case, but until then I have some questions which I hope some of my 
fellow developers can answer: 

1. Is it in any way possible to bring my apps back onto the Play Store (in 
a way which will be accepted by Google)? 

2. Can I give – or sell – my apps to another publisher, and let them 
publish them on the Play Store? 

3. If so, will it be possible to let the apps keep the original IDs (packet 
names) and AbMod IDs? 

4. Can a person – or a firm – close to me (e.g. wrt family) register a new 
developer account, and publish my old apps? How close? 

Regards, Terry

 

-- 
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 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 android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Image view and then a grid view - make them all scrollable

2014-08-01 Thread Vrunda
You can scroll top image in horizontal, by using Scrollview Horizontal, if 
there is multiple image at top.

On Monday, 28 July 2014 21:56:04 UTC+5:30, sweety fx wrote:

 I have an image view on top and then grid view.
 I want all both the image view and grid view scrollable together, but only 
 the grid view is scrolls.
 Is there a way to implement it?


-- 
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 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 android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: App scenario Help: Pro Free Apps - In-app purchase / upgrades

2014-08-01 Thread Darren McEntee
Thanks a lot for the replies guy, all seem good. I think I'll go down the 
route of the pro version becoming a key.
I think would be a good setup in my situation.
Thanks for the feedback.
Darren.

On Sunday, 20 July 2014 17:06:08 UTC+1, Darren McEntee wrote:

 Hi people, i am looking for some advice please on an Android app scenario, 
 im sure a few of you have come across.

 I have a free ad-supported Lite version of my app in the play store.
 I also have a paid Pro version with no ads and some extra functionality.

 Pro: 
 https://play.google.com/store/apps/details?id=com.visualdesign.livefootballontv
 Lite: 
 https://play.google.com/store/apps/details?id=com.visualdesign.livefootballontvlite

 The current app is a little old now, and I am currently rewriting the app, 
 completely from the ground up, with a new UI and a lot more functionality.
 I want to use the Lite package: com.visualdesign.livefootballontvlite as 
 the new base for the new app redesign, then have in-app purchases as an 
 upgrade to the new Pro features.

 My issue arises obviously needing to support the current Pro users, and 
 wanting to have only one code base to manage.

 I'd like for the new Lite version (com.visualdesign.livefootballontvlite) 
 to be able to upgrade to the pro features in the same source code (via 
 In-App Purchase)
 But the current Pro version has a different code base 
 (com.visualdesign.livefootballontv), and I need a way to try get the 
 current pro user, over to the new edition also.

 I'm sure many have had this scenario, and I'd like to ask your advice and 
 experiences on how to better manage this?

 Many thanks for your time,
 Regards,
 Darren.


-- 
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 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 android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: Android XML

2014-08-01 Thread janvi
Ya I have Called finish before starting Activity B but still this issue 
exists

Any help would be appreciated.
Thanks in Advance

On Wednesday, July 30, 2014 10:00:14 PM UTC+5:30, Steve Gabrilowitz wrote:

 This would be true only if activity A called its finish after starting B.  
 Otherwise A remains on the backstack and reappears when B finishes.
 On Jul 30, 2014 5:19 AM, janvi jagruth...@gmail.com javascript: 
 wrote:

 Hi Deepak 

 Thank you for your support:)

 But if I do not call Activity A onbackpress of B then if just finishes 
 the App I mean App gets closed.

 MyCode

  onClick(..) { 

   start activity B
  }
 }class B : Activity {
  onBackPressed() {
   this.finish();

 Any help would be appreciated:)
 Thanks in advance

 On Sunday, July 20, 2014 9:42:50 PM UTC+5:30, Deepak wrote:

 Have you overridden onBackPressed in activity B in which case you should 
 call this.finish() in B. Your code should look similar to this
 class A : Activity {
  onClick(..) { 
   start activity B
  }
 }

 class B : Activity {
  onBackPressed() {
   this.finish(); /* this takes you back to the previous activity on 
 stack. You need not do start activity to go to A as it will create new 
 activity A and launch it instead of closing B and going to previous A.*/
  }
 }

  -- 
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-d...@googlegroups.com 
 javascript:
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com javascript:
 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 android-developers+unsubscr...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/d/optout.



-- 
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 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 android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] http://www.cnet.com/how-to/how-to-recover-deleted-photos-from-a-memory-card/?tag=nl.e214s_cid=e214ttag=e214ftag=CAD3c77551

2014-08-01 Thread alex zuber
http://www.cnet.com/how-to/how-to-recover-deleted-photos-from-a-memory-card/?tag=nl.e214s_cid=e214ttag=e214ftag=CAD3c77551

-- 
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 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 android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: Compass Reading - proper implementation.

2014-08-01 Thread Nathan
Thanks, I've made much more progress. I'm making Rotation the primary if it 
exists and smoothing the Mag-accel via exponential smoothing of the 
vectors. 

I have seen in some examples where gravity sensor is used as if it were a 
backup to the accelerometer. However, I have found no device that has a 
gravity sensor and no accelerometer. 

I have much more data now about which devices have which sensors. I can 
share it here if people are interested. 

I've seen that about two thirds of devices have a rotation sensor. A very 
few have a rotation sensor and no magnetic sensor, which seems not right to 
me. 

Drifting only a little bit, but does anyone know what sensors the Android 
Wear watches, Gear Live and LG G have?

It looks like they do have magnetic and accelerometer but I can't tell if 
they have Rotation. I don't have the hardware yet to query and emulators 
will be no good. It would simplify things if we know they have rotation 
sensor. 

Nathan

-- 
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 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 android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Help - Google has terminated my Developer Account

2014-08-01 Thread Dallas Singletary
Terry,

Shoot me an email to kidgo...@gmail.com.com
On Aug 1, 2014 2:17 AM, Terry terb...@gmail.com wrote:

 After two incidents – of which I think I was completely innocent – Google
 has terminated my Play Store Developer Account. Consequently all of my apps
 – developed over three years – are gone from the Play Store.

  The first incident was a false DMCA takedown, due to a bogus DMCA
 complaint. Google informed me that the case would be taken to court by the
 complaining party, but that never happened.

  The second was the removal of one of my apps – which I think was done by
 a mistake.

  Those who are interested can read about these two cases here:

  https://groups.google.com/forum/#!topic/android-developers/vZ7mKPIe5U4

 and

 https://groups.google.com/forum/#!topic/android-developers/qqo2dmC6Xm8

  I have tried to approach Google in various ways – hoping that they could
 have a second look at my case – but they never seem to answer.

  In the “real world” one is considered innocent until proven guilty.

 Not so by Google. If they think that you are guilty, your are guilty. And
 there is no way to appeal.

  I must admit that I still hope that someone inside Google will have a
 look at my case, but until then I have some questions which I hope some of
 my fellow developers can answer:

  1. Is it in any way possible to bring my apps back onto the Play Store
 (in a way which will be accepted by Google)?

  2. Can I give – or sell – my apps to another publisher, and let them
 publish them on the Play Store?

  3. If so, will it be possible to let the apps keep the original IDs
 (packet names) and AbMod IDs?

  4. Can a person – or a firm – close to me (e.g. wrt family) register a
 new developer account, and publish my old apps? How close?

  Regards, Terry



 --
 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 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 android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
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 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 android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.