They couldn't fix my ID, but I have to create another account in play store console, And I filled out a form. My question is, do I get $25
Related
Google play console is requesting to verify my identity.
The problem is that the verification form is asking for an organization info and docs while the account is for individual and that is provided in the account details screen.
So what am I missing? Where to go? Or how to contact google support?
I had this after emailing googleplay-developer-support#google.com. Solution: Your payment profile shouldn't be set as organization if your developer profile is set to individual and vice-versa.
Per checking, the payments profile associated with your account is set as an organization. You may choose to verify your account as an organization with the following documents that our system accepts: Certificate of Organization, and a valid ID of the organization's Official Representative.
If you would like to verify as an individual and change the entity type on your payments profile, you would have to create a new account in order to change from organization to individual. You may view your payments profile via pay.google.com
To change the entity type on your Payment Profile, it would need to be deleted and created again. Since a Play Console account can only be associated with one Payment Profile, it will need to be deleted and recreated as well.
To resolve the issue, we can close your Play Console account and refund the registration fee. Then, you can delete your payment profile at pay.google.com before you sign-up for a new Play Developer account. To proceed, please provide confirmation by responding with “I confirm to have my Play Console Developer account closed and have its registration fee refunded.” Also, please remove the existing draft app from the Developer account
I had this issue recently and it turned out it was because I had an old Payment Profile with Account Type of 'Organisation'.
You need to go here: https://pay.google.com/gp/w/u/0/home/settings
Personally, I had two payment profiles; one was for an Individual and one was for an Organisation. Maybe the Organisation one was the default or whatever.
In the end I managed to close that payment profile and create a new developer account after having the first one refunded.
There were a few emails to Google Support going back and forth but that solved it in the end and now I have an app on the Play Store.
I've a google play console account. First I created using one Gmail and I invited to the second email with full permision and It looks like below image now.
First row -> secondly invited email
Second row-> original email
Now I need to give full permission to email2 and completely remove the originally created email from this account and use only the secondly invited one.
How can I do it?
You need to request a transfer of ownership of the developer account to Google Developer support.
See https://support.google.com/googleplay/android-developer/answer/6230247?hl=en-GB for the restrictions.
The app should:
create new profile with email or Google Sign-In or Facebook Login
after creating the profile there is an email verification and then the user can sign in
if is the first time it should show a page to create a new in-app profile (creating a document in the database with the uid of the user with description, skills...)
but in this page if the user Google Sign-In it should show name and surname and the Google profile picture and let them add additional info such as description and their skills...
The first 2 steps are easy to achieve but how can I understand if the user just created the profile or he just logged out and in again or he simply uses Google Sign-In every time. And how can I take the user info from the database in Firebase and show it in the create in-app profile page.
Is it possible to achieve in SwiftUI?
Thanks!
To detect is a signed-in user is new, you can compare lastSignInDate and creationDate in the UserMetadata object.
Also see:
Get Created date and last login date from FIRUser with Firebase 3
iOS/Swift/Firebase Authentication: Help Needed on Accessing "isNewUser", which shows the isNewUser that you can also sometimes use (depending on your implementation).
I have my own play store account.
Our client shared their account on my email id to publish their application on their account.
but after sometime client is not available or we are not working anymore with them and we are not in touch with them too. So now we don't need access to their play store console.
For that, I don't find any option to remove access of play store console from my end.
Do you guys have any solution on this?
(I don't remember their email id and we are not in touch with those client anymore)
I don't think this is possible right now, but I will feed this through as a feature request to the relevant people.
i need to open a specific account based on url. i have a requirement that open a account against telephone no/customer id using query string. i try these urls
http://ef.crm/EFCRMDB/main.aspx?etn=account&pagetype=entityrecord (this open a create new account form)
http://ef.crm/EFCRMDB/main.aspx?etn=account&extraqs=etc%3d1%26expert_test%3dabcdef&pagetype=entityrecord (pass query string value and i successfully get this value on form)
In database AccountBase table i find unique id for record that is 'AccountId'.
this works fine for me
http://ef.crm/EFCRMDB/main.aspx?etn=account&pagetype=entityrecord&id=A3D57E8C-87F6-E111-8BF8-000C29E2596B
now problem is that how i get 'AccountId' against telephone no or customer id received form url? can i open account by dialog or workflow if yes then how?
Maybe you can also make a HTML+JS Web Resource and upload it to the Dynamic CRM. You then can access the web resource through URL.
The web you upload must do things as follows:
Fetch the telephone no from the query string
Do Fetch XML call from JavaScript. Pass the telephone no as a parameter and than get the Id of the account.
Open the account window you want by passing the account Id in the query string.
Hope it helps :)
So I'm not sure there is anything out of the box that will give you the Id. But you could try:
Dialogs and Workflows now have an option for getting the url of a record.
You could create a custom workflow activity (for use in dialogs and workflows) to get the Id
If your in JavaScript you can do: Xrm.Page.data.entity.getId()