Android - Flash - permission to use a network with a peer-to-peer network

I am working on an Android application that implements Flash Peer networks.

I have regular Android and WebView controls that include HTML with a built-in Flash player.

Sometimes the flash player asks for permission (and everything after that works correctly), and sometimes it does not ask and will freeze. Is there a way to get the Flash player to request permissions? Or a way to add your application to the list that the Flash player takes every time?

As an example, this is a field that I need to pop up regularly.

+6
source share
1 answer

I found a problem. It was just due to some HTML markup that I used.

I did not understand that object tags do not like to end, as XHTML means. Removing / "> from the end of the param element fixed it.

+3
source

Source: https://habr.com/ru/post/907578/


All Articles