I want to set my own icon in my kivy app, but its not working. I have tried both with icon.ico and icon.png.
This is what i have tried:
class MyApp(App):
def build(self):
self.icon = 'myicon.png'
and:
from kivy.config import Config
Config.set('kivy','window_icon','icon.ico')