Re: [android-developers] Not Licensed for this country when paid app used in another country?

2013-10-24 Thread Mukesh Srivastav
can we have detail about the app, like type of app at-least to know ? On Thu, Oct 24, 2013 at 5:22 AM, Julian Bunn jjb...@gmail.com wrote: One of my paid app users, who bought the app in Australia, travelled to the USA and tried to use the app there. When the app was started he received the

[android-developers] AndroidPushNotification

2013-10-24 Thread janvi
Hello All, Iam new to pushNotification I have few doubts here. I have implemented push Notification feature.Now if I want to open an alert dialogue when the user clicks on push notification I don't know how to open the alert dialogue here???any ideas One more question is as follows How

[android-developers] Re: AndroidPushNotification

2013-10-24 Thread Piren
push notification can do whatever you want, i assume you've added a notification when the push got in. So add an intent to the notification that launches an activity which will have a dialog (or look like a dialog). Regarding count, you can have a count on the notification icon, but not on the

[android-developers] Re: Remote View Issue

2013-10-24 Thread Jose_GD
It would be helpful if you tell us where are you using this code: onReceive, onUpdate? El martes, 15 de octubre de 2013 01:37:02 UTC-3, Peeyush escribió: Dear All, I am updating RemoteView from Services, but if I pass PendingIntent very fast. RemoteView is not updating.. I got the fix,

Re: [android-developers] Re: Android lock screen

2013-10-24 Thread Jose_GD
AFAIK no new APIs, but from 4.2 you can put home screen widgets on the lock screen. It's an step forward I think in that direction. El martes, 9 de abril de 2013 15:07:42 UTC-3, Dritan escribió: OK, so since the last reply was in 2010, is there NOW in 2013 an API in addition to Lockscreen

[android-developers] Re: AndroidPushNotification

2013-10-24 Thread janvi
Hi piren than you :) Using the following code Iam able to go to next activity and alertdialogue. Intent notificationIntent = new Intent(this, NotificationReceiverActivity.class); //data received from the push notification is placed in bundle and extracted later

[android-developers] Re: AndroidPushNotification

2013-10-24 Thread Piren
you need to use the PendingIntent.FLAG_UPDATE_CURRENT flag when you're creating the pending intent. Also notice that if your activity is in a singleInstance or singleTop then you need to use the event onNewIntent to get the new one. On Thursday, October 24, 2013 3:36:33 PM UTC+3, janvi wrote:

Re: [android-developers] Not Licensed for this country when paid app used in another country?

2013-10-24 Thread Julian Bunn
Sure: it's an app called AudioTool for making sound measurement. On Wednesday, October 23, 2013, Mukesh Srivastav wrote: can we have detail about the app, like type of app at-least to know ? On Thu, Oct 24, 2013 at 5:22 AM, Julian Bunn jjb...@gmail.comjavascript:_e({}, 'cvml',

[android-developers] Re: Not Licensed for this country when paid app used in another country?

2013-10-24 Thread Nobu Games
Are you sure your Australian customer had the app still installed on his phone? Maybe he tried to reinstall it during his stay in the US and the error message was actually from Google Play. What 3rd party libraries are part of your app? On Wednesday, October 23, 2013 6:52:02 PM UTC-5, Julian

Re: [android-developers] Remote View Issue

2013-10-24 Thread diwa navi
Dude wanna get one of my problem fixed in my smart phone ...can you? On 15-Oct-2013 10:10 AM, Peeyush Varshney varshney.peey...@gmail.com wrote: Dear All, I am updating RemoteView from Services, but if I pass PendingIntent very fast. RemoteView is not updating.. I got the fix, but i doest

[android-developers] Re: Not Licensed for this country when paid app used in another country?

2013-10-24 Thread Piren
Sounds like a Google Play restriction, did you limit your app not to be distributed in the USA? On Thursday, October 24, 2013 2:52:02 AM UTC+3, Julian Bunn wrote: One of my paid app users, who bought the app in Australia, travelled to the USA and tried to use the app there. When the app was

Re: [android-developers] Re: Not Licensed for this country when paid app used in another country?

2013-10-24 Thread Julian Bunn
The customer installed and used the app in Australia, traveled to the USA (where he received the error), then traveled back to Australia where it started to work again, no error. The app is marked for all countries, and indeed most of my customers are in the USA. Julian On Thu, Oct 24, 2013 at

Re: [android-developers] Re: AndroidPushNotification

2013-10-24 Thread TreKing
On Thu, Oct 24, 2013 at 6:46 AM, Piren gpi...@gmail.com wrote: Regarding count, you can have a count on the notification icon, but not on the launch screen icon. Keep in mind that this changed without warning in Honeycomb.