How do you change the size of a window using Kivy. I\'ve been searching around and am able to change pretty much everything except the size of the window that things go into
No, the size cannot be set in kv. You can set it using Config as you do above, or you can change the window size later by setting the size on the Window object:
from kivy.core.window import Window
Window.size = (640, 1163)