Google Play game sign in failed - google-play-services

I'm making a tutorial to connect to "google play game service" and a pop up still appear mentioning that "failed to sign in. plesae check your network connection and try again"
Everything is setup correctly, SHA1, package name, app_id, and any other related to configuration.
Two strange message appear in the log:
The fist is "You have not specified a View to use as content view for popups. Falling back to the Activity content view which may not work properly in future versions of the API. Use setViewForPopups() to set your content view."
The second is "disconnect() called when client was already disconnected"
is there any possible solution?
Thanks in advance for any help.

Related

Google Background Location Acccess Disclouser

I am working on a Task which need to Access Users Location on Every 5 Minutes even when the App is Killes or Closed.
I have Already Achived it. But google play console Restricted me with the below message.
Prominent disclosure not found
Your app must display a prominent disclosure through a pop-up alert before your app’s location runtime permission. Based on our review, a prominent disclosure did not appear before the runtime permission.
Please add a prominent disclosure before the runtime permission.
• Include at least the following sentence, adapted to include all the relevant features requesting access to location in the background in the app that are readily visible to the user: “This app collects location data to enable ["feature"], ["feature"], & ["feature"] even when the app is closed or not in use.” If you extend permitted usage to ads, please also include: “This data is also used to provide ads/support advertising/support ads.”
• Include any other details necessary to make it clear to the user how and why you are using location in the background. While additional content is permitted, it should not cause the required content to not be immediately visible.
I have also Added Pop Up, But i am Confused about, Should i Show that Pop Up Every Time On Accessing Location Or Only Once when App Being Installed,
Any help or Lead will be Appreaciated , (Respect)
Rajat.
After doing some Resaerch work on my Question, I have found a Answer for this Question.
We dont need to to show pop-up everytime on accessing location from background.
This popup will shown only once in a app maybe in HomeScreen after app install first time.
Proof of Answer
In genrealy, you pop-up dialog should appear before your app’s location runtime permission including
Include at least the following sentence, adapted to include all the
relevant features requesting access to location in the background in
the app that are readily visible to the user: “This app collects
location data to enable ["feature"], ["feature"], & ["feature"] even
when the app is closed or not in use.” Include any other details
necessary to make it clear to the user how and why you are using
location in the background. While additional content is permitted, it
should not cause the required content to not be immediately visible.
Include the following sentence, if you extend permitted usage to ads:
“This data is also used to provide ads.”

App Store Connect: New Agreement Available but no button appear

I have some problems with my app store connect account. I need to update one of my existing app, but unable to do it.
The banner underneath appear, it says a new agreement is available and I need to accept it.
But the thing is, I can't see any button or link to accept the agreement. Does anyone have an idea to resolve this?
FYI: I am the account holder.
After searching for quite a while, I found the new agreement button is available under the apple developer account page.
This is so confusing. From the app store connect page there is no link or information at all that inform us to where should I navigate, to be able to accept the new agreement.
Anyway, here it is https://developer.apple.com/account

XPages: Login not working?

im having a huge problem with the login node in the Web Browser. I click "Login" on the top right corner of my layout. It gets me to the login screen. All fine so far. Then im trying to login and as soon as i typed in my login-data and press "Sign in" Its just reloading the login-page. It doesnt take me back to the site i came from, it doesnt log me in, nothing. Im only having this issue in the web browser since it automatically logs you in, in the Notes Client. Thanks in advance.
PS: Sorry for the bad english.
Sincerly,
Brugen
Agree with Paul...
You could try: http://yourserver.com/names.nsf?open&login to check if your login is correct - disregarding any issues with your XPage.
Next, have a look at your server console to see if anything is written there to indicate a problem. If so it is easiest to use something like the XPages Log Reader to investigate the log files on the server. From the link there is a link to the project where you can download the database.
HTH :-)
/John
Sorry if this is assuming too little knowledge, but are you trying the correct username and password? By default Notes Client and web passwords are not synchronised, it's a separate HTTPPassword field in your Person document on the server. After changing, it may take a few minutes to take effect.

No way to accept Itunes Connect Agreement Update

I'm walking in circles trying to create a new app in Apple's Itunes Connect. Here are the steps I'm doing:
When I log in to Itunes Connect I'm seeing a screen asking me to "Review the iOS Developer Program License Agreement."
I click continue and then I'm presented with a "Manage Your Apps" screen.
I click Add New App and it sends me to... the Agreement Update again:
So I click on Members Center this time and it goes here:
Clicking on Itunes Connect sends me back to... yes, the Agreement Update once more.
How do I solve this issue? Where is the secret door to adding a new app?
I got stuck here too - here's how it went for me:
Nothing showed up in iTunesConnect's finance/agreement area at first (... even though the links kept sending me there!)
I eventually found something to view/accept at the top of the general Apple Member Center home page.
After step 2, something new finally showed up in iTunesConnect's finance/agreement area that I could accept
After above steps I was able to continue what I was trying to do in iTunesConnect which, in my case, was setting up some new promo codes for my app.
Had the same problem. Tried clearing cookies and cache per above recommendations, nothing. Waited 20m, bingo. Looks like your contract acceptance has to go through some review process, whether manual or automatic, taking a bit of time. I imagine the cookies/cache-clearing having worked was simply you cleared at the right time.
Solution: Open the Link https://itunesconnect.apple.com from Laptop Not Mobile. It will ask you to Accept the Terms and condition. While you open the link from mobile the Accept option will not visible to you. So open the link from Laptop and Accept the terms and condition.
***If you are already registered in TRACES, please login with your registered User Id (PAN), Password & PAN else register as new user*emphasized text****
enter image description here
Had the same problem. Tried clearing cookies and cache per above recommendations, nothing. Waited 20m, bingo. Looks like your contract acceptance has to go through some review process, whether manual or automatic, taking a bit of time. I imagine the cookies/cache-clearing having worked was simply you cleared at the right time.

CLLocationManager "turn on location services..." alertview customization ios

I know that I can't change the title or the buttons for this alertview, but i've seen numerous apps that changed the message of the alert view
Something like this
Also, I have the Bump API in my app so everytime the popup shows, it says "Bump uses your location to help determine whom you are bumping." and I don't want that displayed when they first use my app.
Does anybody know how I can change the message or change bump's message?
Thanks
To change the message of the alert, use the "purpose" property of CLLocationManager. Check the docs: http://developer.apple.com/library/IOs/#documentation/CoreLocation/Reference/CLLocationManager_Class/CLLocationManager/CLLocationManager.html
I'm not sure how the Bump API works, but if you are just importing all the classes you need, you should be able to edit the location services message. Otherwise, one option would be to request location access before calling the Bump API's to get permission for your app. Once Bump checks, it will already have permission and skip presenting its own.