I'm developing a browser for android with java. It works entirely through WebViews. But the app is not able to play videos via stream ... I wonder if it's possible to get it done. Thank you.
WebView in xml:
<WebView android:layout_height="match_parent"android:layout_width="match_parent" android:id="@+id/wv" />
Java code:
WebView wv = (WebView)findViewById(R.id.wv);
wv.setWebViewClient(new WebViewClient());
wv.setJavaScriptEnabled(true);
wv.loadUrl("https://example.com");