2023 NEW METHOD - HOW TO CREATE MULTIPLE GOOGLE PLAY DEVELOPER ACCOUNTS WITHOUT GETTING BANNED

Status
Not open for further replies.
i tried all of this but still getting prior ,so the solution i found to avoid this is to buy ready verified fresh google play dev accounts from a supplier , the day i started buying them instead of creating them bymself , i stopped getting the prior problem , after all the problem was in my method of creating the accounts o_O
 
i tried all of this but still getting prior ,so the solution i found to avoid this is to buy ready verified fresh google play dev accounts from a supplier , the day i started buying them instead of creating them bymself , i stopped getting the prior problem , after all the problem was in my method of creating the accounts o_O
Dope.

How do you manage the account(s)?
 
the seller give me private browsers to manage multiple accounts

Ok, that is a relevant information for sure. We can use this browsers(like dolphine) with Proxies or 4G connection.

I would like to ask you, how is the development process, should we take care about not using android studio or any google products such as firebase or chrome? Should we use different computers for different GP accounts?

Can you provide more information about the deployment process, please?

Thank you, I hope we can succeed all together and experience the highs.
 
Ok, that is a relevant information for sure. We can use this browsers(like dolphine) with Proxies or 4G connection.

I would like to ask you, how is the development process, should we take care about not using android studio or any google products such as firebase or chrome? Should we use different computers for different GP accounts?

Can you provide more information about the deployment process, please?

Thank you, I hope we can succeed all together and experience the highs.
If you use the same PC to build your apps, Google easily can catch you because every G product make a footprint of your device and can access to unique data like your CPU, ram, fonts installed, etc. The best you can do is using a dedicated computer for every account or at least a virtual machine (not in cloud). If it's not necessary, don't install any G product such as Chrome. Also you can sign your apps without Android Studio using Gradle on command prompt.
 
Anyone found solution to Admob limit?

And what about Facebook audience network? I get like low Impression rate - what can be the reason? I don't use mediation.
 
Anyone found solution to Admob limit?

And what about Facebook audience network? I get like low Impression rate - what can be the reason? I don't use mediation.
On Facebook audience network I get 1/5 of impressions/requests. While everytime I check on my phone, always always the ads are show.
 
FBA get very stupid last year and deleted all my apps and also refuse all my appeals months after I fill it's form.
 
FBA get very stupid last year and deleted all my apps and also refuse all my appeals months after I fill it's form.
Yes me too, around 2 years ago. - I created a new Facebook on my name, added friends and family and it worked - but cannot add older apps.
 
if you facing problem on creating multiple google play developer accounts in general like prior or id verification , just find a supplier and buy accounts , that what i do personally , i buy like 10 accounts each day from my supplier without problems , now i only focus on publishing apps without thinking about the creation process on of multiple accounts
 
Hello, can anyone confirm ..can you use android studio on the same computer for all accounts without VirtualBOx? How does google identify you? Does android studio or the .oob file (signed app) contain meta-data about your computer or fingerprint?
 
Hello, can anyone confirm ..can you use android studio on the same computer for all accounts without VirtualBOx? How does google identify you? Does android studio or the .oob file (signed app) contain meta-data about your computer or fingerprint?
Yes, you need to read more in the forum, Google easily can identify you trough AS, really easy.
 
Yes, you need to read more in the forum, Google easily can identify you trough AS, really easy.
I worked on the app on my computer, and when I was ready to publish I moved the app on AS on virtual box signed and uploaded. Is it a good way?
 
I worked on the app on my computer, and when I was ready to publish I moved the app on AS on virtual box signed and uploaded. Is it a good way?
First you need to remove a lot of generated files, only keep the project itself (Java and XML files) because AS insert a lot of files in the project folder, also Gradle.

I wrote this little bash script (work on linux or mac) to remove files, you can use it or read as reference:


Bash:
#!/bin/bash

rm -rf .git
rm -rf .gradle
rm -rf .idea
rm -f *.iml

rm -f app/*.iml
rm -rf app/build/*
find . -name ".DS_Store" -depth -exec rm {} \;

Keep in mind that you need to see all hidden files because a lot of files starts with . and in Windows you can't see it by default.
 
First you need to remove a lot of generated files, only keep the project itself (Java and XML files) because AS insert a lot of files in the project folder, also Gradle.

I wrote this little bash script (work on linux or mac) to remove files, you can use it or read as reference:


Bash:
#!/bin/bash

rm -rf .git
rm -rf .gradle
rm -rf .idea
rm -f *.iml

rm -f app/*.iml
rm -rf app/build/*
find . -name ".DS_Store" -depth -exec rm {} \;

Keep in mind that you need to see all hidden files because a lot of files starts with . and in Windows you can't see it by default.
Ok thank you!
 
Status
Not open for further replies.
Back
Top