Not sure what that means or what the difference is
Then I guess not, I am looking for something I can just buy one computer with a power cord and just plug in the power and plug in the monitor and it will work
Build a minimal Android TV app whose only Activity is a full-screen WebView pointed at display-legacy.html (or a hosted URL). Sideload via ADB, set as default launcher.
Skeleton (Kotlin, MainActivity.kt):
class MainActivity : Activity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
window.addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON)
window.decorView.systemUiVisibility =
View.SYSTEM_UI_FLAG_FULLSCREEN or
View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY or
View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
val wv = WebView(this).apply {
settings.javaScriptEnabled = true
settings.domStorageEnabled = true
settings.cacheMode = WebSettings.LOAD_DEFAULT
loadUrl("https://khalyereim.org/display-legacy.html")
}
setContentView(wv)
}
}
Manifest needs <category android:name="android.intent.category.HOME"/> on the launcher activity, INTERNET permission, and the android.software.leanback feature for Android TV.
Nah, for a shul stick with mini pc or pi, you never want to connect these TVs to the Internet in a shul they have a kind of their own. Use it as a display.
First of all, these TVs are cheap because they make money by showing ads. Second, it’s a whole headache to set another launcher (which you may or may not want to deal with).
Three, tell them to spend the extra hundred on a setup that will last a long time and actually operate the way they want it to.