[android-developers] Android In App Billing version 3. Querying for Purchased Items returned null information

2013-03-10 Thread md abdul gafur (Bangladesh)
After purchased product , i am try to get Purchased Items information but return null value. The app are publish in goole play. The are not in goole play draft. Bundle ownedItems = mService.getPurchases(3, getPackageName(), inapp, null); int response = ownedItems.getInt(RESPONSE_CODE);

Re: [android-developers] Unsubscribe

2013-03-10 Thread Glitch
Was this ever resolved? I've noticed a similar issue with my app. -- -- 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

Re: [android-developers] improving gps lock time

2013-03-10 Thread dashman
Looks like AGPS uses WIFI and cell-phone tower locations. The problem for my app is that I don't necessarily have access to data service - so AGPS will not work. Even though I want to do want AGPS does - i.e. provide a start location for getting satellite queries. But my understanding is that

Re: [android-developers] Re: help needed

2013-03-10 Thread ramesh babu
thank u bob. -- -- 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

[android-developers] Best practice? New Activity for UI screens or change layouts and capture back button?

2013-03-10 Thread bsd_mike
Just wondering what the consensus is doing a UI. Should you kick off a new activity each time you put up a new screen? Or should you do what some call a Frankenstein-Activity which handles lots of screens and the back-button itself. When should you do either? Are there best practice guidelines

Re: [android-developers] improving gps lock time

2013-03-10 Thread lbendlin
AGPS does NOT use wifi and cell tower locations. http://en.wikipedia.org/wiki/Assisted_GPS On Sunday, March 10, 2013 8:33:05 AM UTC-4, dashman wrote: Looks like AGPS uses WIFI and cell-phone tower locations. The problem for my app is that I don't necessarily have access to data service - so

[android-developers] Broadcast receiver in foreground activity - not reliable?

2013-03-10 Thread lbendlin
I got a user reporting that our app does correctly terminate when the user's device exits car mode, but only when the activity that contains the receiver is not active. If the activity is in the foreground then more often than not our app does not terminate. The activity is defined as

[android-developers] Finding SHA1 fingerprint key

2013-03-10 Thread ramesh babu
hi frnds how to Find SHA1 fingerprint key in eclipse?.. -- -- 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

Re: [android-developers] improving gps lock time

2013-03-10 Thread Kristopher Micinski
If the GPS has been on and the user turns off the screen, there's nothing you can do to really get a better approximation to location. Let's be realistic here: how accurate does your signal need to be? If it's pinpoint accuracy (within 60-200 m) then you should be getting constant fixes anyway.

[android-developers] How to get a good idea of app downloads / day for Free apps?

2013-03-10 Thread niko20
So I have paid apps and some free Demos, but the problem is I can get metrics for the Free apps. I mean, the Downloads number in the dashboard is NOT trustworthy, I hardly read it. I don't think it's accurate. The nice thing about Paid apps is I can see every order in Google checkout and

[android-developers] Re: Google Checkout spreadsheets and currency - how to convert all to U.S.?

2013-03-10 Thread niko20
Thanks for the info, I'll give it a shot On Saturday, March 9, 2013 1:58:35 AM UTC-6, al wrote: The payout reports have 2 columns called Merchant Currency and Merchant Receives. The sales reports seem to be preliminary. It should be sufficient to use a simple script to convert the Charged

Re: [android-developers] Best practice? New Activity for UI screens or change layouts and capture back button?

2013-03-10 Thread Kristopher Micinski
Don't override the back button. There are times when overriding the back button really has some other semantic meaning (ending GPS fixes, etc...), but most of the time it's as annoying as overriding back on a webpage. kris On Sun, Mar 10, 2013 at 9:45 AM, bsd_mike bsd_m...@yahoo.com wrote:

Re: [android-developers] Best practice? New Activity for UI screens or change layouts and capture back button?

2013-03-10 Thread Kristopher Micinski
(By the way, there are flags you can pass to startActivity that will change the behavior of the activity stack. In the cases where you might otherwise wrongly override the back button.) Kris On Sun, Mar 10, 2013 at 12:44 PM, Kristopher Micinski krismicin...@gmail.com wrote: Don't override the

[android-developers] SMSManger sendTextMessage - never get deliveryIntent

2013-03-10 Thread Lindsey Simon
Do you need RECEIVE_SMS permission to receive the deliveryIntent by any chance? Here is my code - any help would be CRAZY appreciated =) I always get the sent intent but never the delivery one. // The intent action to be unique so that we can have multiple // concurrent

[android-developers] Re: Best practice? New Activity for UI screens or change layouts and capture back button?

2013-03-10 Thread niko20
Using multiple activities is much less hassle on the developer side On Sunday, March 10, 2013 8:45:09 AM UTC-5, bsd_mike wrote: Just wondering what the consensus is doing a UI. Should you kick off a new activity each time you put up a new screen? Or should you do what some call a

[android-developers] Re: Delay on Track Playing(SoudMixter Application)

2013-03-10 Thread niko20
You are never going to sync perfectly doing it this way. You have to mix the sound data together yourself and then feed it out as one PCM stream On Saturday, March 9, 2013 12:25:51 PM UTC-6, Dharmendra Deshmukh wrote: This is Application Code I am Posting here.. public class

[android-developers] Re: How to get a good idea of app downloads / day for Free apps?

2013-03-10 Thread RichardC
How about Google Analytics - Mobile App Analytics: http://www.google.com/analytics/features/mobile-app-analytics.html On Sunday, March 10, 2013 4:39:28 PM UTC, niko20 wrote: So I have paid apps and some free Demos, but the problem is I can get metrics for the Free apps. I mean, the

[android-developers] Re: Android In App Billing version 3. Querying for Purchased Items returned null information

2013-03-10 Thread Jonathan S
Did you look into http://developer.android.com/google/play/billing/billing_reference.html On Sunday, March 10, 2013 7:20:53 AM UTC-4, md abdul gafur (Bangladesh) wrote: After purchased product , i am try to get Purchased Items information but return null value. The app are publish in

[android-developers] Re: Best practice? New Activity for UI screens or change layouts and capture back button?

2013-03-10 Thread bsd_mike
True, using multiple activities saves hassle on developer side..especially trying to remember where to back up too.. but is there any benefit from not having a pile of activities? If you were doing MVC..and your controller keeps track of the screens..properly sends you back to a previous screen

Re: [android-developers] Re: Best practice? New Activity for UI screens or change layouts and capture back button?

2013-03-10 Thread Kristopher Micinski
The benefit might be that you can have very fine grained control over the control flow through your app, but in practice this should be achieved through something more standard (i.e., having weird control flow will likely upset users...) You might think you'd use less memory, but you shouldn't

Re: [android-developers] Enumerate sd cards

2013-03-10 Thread Yves Liu
Thank for the info. My question is that there are so many third party file explorer apps, how do they figure out the path of internal and external storages? On Fri, Mar 8, 2013 at 5:24 PM, RichardC richard.crit...@googlemail.com wrote: The problem we have here is that

Re: [android-developers] Re: Best practice? New Activity for UI screens or change layouts and capture back button?

2013-03-10 Thread TreKing
On Sun, Mar 10, 2013 at 4:12 PM, bsd_mike bsd_m...@yahoo.com wrote: is there any benefit to using one Activity? For games, I believe, it avoids the resource management and dependency issues related with dealing with the lifecycles of multiple Activities. Beyond that, though, I believe shoving

Re: [android-developers] Enumerate sd cards

2013-03-10 Thread RichardC
By guesswork, testing and end-user feedback on individual devices. On Sunday, March 10, 2013 11:03:36 PM UTC, yve...@gmail.com wrote: Thank for the info. My question is that there are so many third party file explorer apps, how do they figure out the path of internal and external storages?

Re: [android-developers] Re: Best practice? New Activity for UI screens or change layouts and capture back button?

2013-03-10 Thread Lew
TreKing wrote: bsd_mike wrote: is there any benefit to using one Activity? For games, I believe, it avoids the resource management and dependency issues related with dealing with the lifecycles of multiple Activities. Beyond that, though, I believe shoving all of your functionality into

Re: [android-developers] Re: I have problem working with SHARED PREFERENCES, I think is project specific... i used the same before without errors but now get error

2013-03-10 Thread Deepa M
SharedPreferences myPrefs = youractivityname.this.getSharedPreferences(myPrefs, MODE_WORLD_READABLE); SharedPreferences.Editor prefsEditor = myPrefs.edit(); On Sun, Mar 10, 2013 at 12:15 AM, Jonathan S xfsuno...@gmail.com wrote: in Shared1, Context.MODE_PRIVATE in Shared2,

Re: [android-developers] Re: Android In App Billing version 3. Querying for Purchased Items returned null information

2013-03-10 Thread Efti Babu
HI, Thanks for your reply. BILLING_RESPONSE_RESULT_OK is zero here and also return all Response Code but all do not return value in this response code. Thanks. Abdul Gafur Android Developer. On Mon, Mar 11, 2013 at 2:21 AM, Jonathan S xfsuno...@gmail.com wrote: Did you look into

[android-developers] Re: I have problem working with SHARED PREFERENCES, I think is project specific... i used the same before without errors but now get error

2013-03-10 Thread Seshu
Hi, If u r creating sharedpreferences in our activity class means then it wont show any error other wise if u r creating shared preferences in other java class then it ll shows errors. in that case u need to pass the context or activity object. this is the sample code public class