How to stream Arduino's attached camera to an app made in Appinventor

Hello ! I have made a project which has a camera integrated in it . The camera that it is attached to the arduino is OV7670. Now the question is, if I can livestream somehow what my camera sees to an app made in Appinventor or at least if Appinventor supports this feature. I am open to any idea that might solve my question. Thank you.

Now the question is, if I can livestream somehow what my camera sees

The camera outputs some amount of data for each frame. Figure out how much that is.

The serial port can send some number of bytes per second, depending on baud rate. For your amount of data, how long will it take to send one frame?

Given that length of time, how many frames per week can you send? Will that be a satisfactory frame rate?