K
K
koletmpmdfab2021-01-09 00:54:12
Google Play
koletmpmdfab, 2021-01-09 00:54:12

What happens if you publish 1 game on google play every day?

Let's say that we have 365 ready-made games with descriptions, screenshots, all in aso feng shui, they are all different, for example, like ketchapp or voodoo. Will it be possible to publish 1 every day and so 365 days in a row?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
X
xmoonlight, 2021-01-09
@xmoonlight

No difference: all at once or every day one by one: the rules are the same.
Akk will not advance to the top from this.
Acc is promoted only for total active installs, stars, etc.

S
Sly_tom_cat ., 2017-04-04
@OccamaRazor

You do not have classes and not instances - but a mix.
You need something like:

class figura():
    def __init__(self, x, y, colour):
        self.x = x
        self.y = y
        self.colour = colour

class pewka(figura):
    def __init__(self, x, y, colour):
        super().__init__(x, y, colour)
        self.type = "pewka"

class ladja(figura):
    def __init__(self, x, y, colour):
        super().__init__(x, y, colour)
        self.type = "ladja"

etc.
Creating instances is:
fig1 = pewka('a', 1, 'red')
fig2 = ladja('a', 1, 'red')

then feel free to compare
if any_fig.colour = 'red':
...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question