Can I create an Android game with PyGame?
Let's say I have already created some kind of simple game and it is working well on PC. Can I make a .apk
file?
import pygame, sys from pygame.locals import
pygame.init()
pygame.display.set_mode(500, 400)
pygame.display.set_caption('Flappy Bird')