AppStore Connect - can't provide information for test flight build - app-store-connect

I've uploaded an Appstore build to release in test flight. But It showing a warning asking to complete test information... . But all the followed fields are disabled. Any idea why? I'm not able to find why?

You need to be logged in with an user account which has the access rights to change those information. I made the same error, I added my private AppleID as testuser and then I got an eMail which invitation link where I had to sign in with my private AppleID-account. Then I went back to AppStoreConnect and couldn't edit anything, because I was logged in with my private AppleID. I logged out and logged in with Administrator AppleID and everything worked again. :-D

Related

How can I login into my heroku account ? Unable to access my account due to Multi Factor Authentication

Please Help!
I am unable to login into my heroku account even I know my correct login id and password due to the 2FA which was enabled mistakenly with me because I needed to deploy my app quickly.
I used Google Authenticator for generating the authentication code and logged in but next day my mobile got damaged in a way which couldn't be repaired. Due to which when again I tried to login it still asks for google generated verification code which I don't have, I contacted heroku support several times but it's been a month but still I couldn't get any satisfactory response.
They have opened some Temporary code login and provided a recovery code but still I am unable to login.
Anyone Please help me get my account
Page where I am stuck

Accidentally disconnected my Codechef account from Github

I am new to the Codechef platform registered using a Github account. For some reason, I wanted to log out. So I clicked on the Github symbol on Codechef page. My chrome browser asked 'are you sure you want to disconnect Github account?' and I have clicked 'OK'.
Now Codechef is asking for new registration. What to do?
Please help I don't want to lose all my work on Codechef.
Thank you.
I have got the answer.
Open the login page of CodeChef. Enter the username of your account and use Github password.
You will get your account back. This account will not be linked with Github.
Note: If you forgot your username you can possibly find it in your registered(Github) email id's mail inbox.

iTunes Connect - Not able to create an iTunes Connect record

I have a Xamarin.iOS app and I'm trying to upload it to TestFlight. So, I am trying to add create an iTunes Connect record. When I log into iTunes Connect, I am being displayed the following page.
When I click on Apps, the following page is displayed, even though I am registered for a Apple Developer program and signed in to that account.
So I cannot proceed with the steps in the following link and cannot add a iTunes Connect record.
Could you please tell me why I am not being redirected to the correct page to continue with the process?
Since you don't have subscribed it should go to enrolment instead of different account that you are part of it. Make sure about under which team you are trying to clicks on the Myapps. If its your's definitely you won't be able to get in to MyApps until you enrol for itunesconnect.
Please check with your company's account that you have been invited for itunesconnect as well.
You can access iTunesConnect once you accepted your company's invitation. After accepted that you shall login with itunesconnect and change your team to your company account then go for myApps page. Cheers!

Google play game service "Failed to sign in.Please check your network connection and try again"

I just released my app on google play. When the app tries to login to google game service, I get an pop saying "Failed to sign in. Please check your network connection and try again". I have been able to login during the development of the app.
In google developer console, I have linked both the debug and release version of my app.
One thing that might be the problem is that I published the app before the game service (which is not recommended by google). Is this the problem? How do I fix this? How can I debug this?
As referred with this link and from this forum, if the phone has the wrong time/date you will encounter this error. You may also check the answer in Failed to sign in. Please check your network connection and try again. I have moved app id and leaderboard id from strings.xml to ids.xml in values folder. I have deleted all client ids and add again client ids for debug keystore and release keystore. Hope this helps!

get same permission screen every time when login with facebook app installed in the iOS device

I am using Facebook iOS SDK v3.5 for my app, I found that if I installed the facebook app and was not logged into the iOS device (Settings > facebook), then if I was logged into my app for the first time, it works fine: it will switch to the facebook app's login view and show some permissions with a "OK" and a "cancel" button. but after I was logged into my app and logged out and logged in again, the same permission screen in the facebook app will still be shown. I think the expected behavior is that when log in for the second time we should not see that permission screen since we have already granted these in the first time log in.
The same thing happens in the sample project "Scrumptious" in the FB SDK v3.5. Does someone know how to solve this problem? Thanks.
If I understand you correctly, the behavior is working as intended. Basically, the semantic here is that the user has logged out, so it is appropriate to ask them to confirm to log in again. Specifically the logout code in the sample (and in most apps) is to clear the token cache on the device, so the next time the app is asking for a new token.
You are right that once a user has granted permissions (and until they revoke them), the Facebook servers do know this. As a result there is a slightly nuanced flow in the login screen (you can see this by granting publish to scrumptious, and then the next time you request post it will be something akin to "you've already granted this permission").
So, you could technically not clear the token cache but then why bother with a log out option.
Hope that helps.