[android-developers] Re: Goolge play! store crashes when showing GoodNews page

2012-07-26 Thread vistaman
I am having the same issue with my app. Any updates on this? It's been going on for a month. On Saturday, July 14, 2012 4:49:14 AM UTC-7, sven wrote: > > Hi, > > at least two of my users have reported that the Google play! store on > their Jelly Bean installation is force closing when bringing u

[android-developers] Issuing refund to users after 15-minute window

2012-06-01 Thread vistaman
If I issue a refund to a user after the 15-minute refund window, does the Android Licensing know about this? i.e. in the licensing check should receive a 'Not licensed' response, if the user tries to run the app. Thanks. -- You received this message because you are subscribed to the Google Groups

[android-developers] Android Development Income Tax Question

2011-01-20 Thread vistaman
Last year, I made about $1200 selling my apps on Market, including ads income. However, I've also spent about $300 (Android Market fee, a phone for testing, etc). Can I deduct those expenses, and hence report $900 for total income? Thanks. -- You received this message because you are subscribed t

[android-developers] What would cause an activity's private field to be cleared after onActivityResult?

2010-05-27 Thread vistaman
I am seeing a rare exception: Let's say my main activity has a list of data, called List dataList. I initialize it in the onCreate method of the Activity, so it should never be null during the lifetime of an activity. Yet, sometimes (very rare) after a sub-activity has finished and the main activi

[android-developers] Re: Best practices for creating multiple app versions from a single codebase?

2010-05-21 Thread vistaman
Here's how I did it, not sure if it is the best practice or the most efficient one. 1. Create an Android project from Eclipse, this will be used solely for developing paid version. 2. Create an ant script to copy the entire paid version to a separate directory that becomes the free version. 3. Use

[android-developers] Activity - get notified when all views are rendered

2010-04-22 Thread vistaman
I searched for all overidable methods of Activity and couldn't find this: Basically I want to get notified or override a method when all views in the current activity had been rendered. This is because I need to get the measured heights of a couple of TextViews and then resize other views according