I'd like to launch a specific camera directly from an external app (Home Assistant) without requiring ADB debug mode.
TinyCam already supports com.alexvas.dvr.intent.extra.CAMERA_ID via LiveViewActivity, but this requires ADB shell access
because there's no URI scheme that maps to it.
Request: Add a URI deeplink scheme so LiveViewActivity can be triggered from a standard Android intent, e.g.:
tinycam:/camera?id=978266576
or
tinycam:/camera?name=SecCam_1
This would allow launching a specific camera view from Home Assistant using remote.turn_on with activity:
"tinycam:/camera?id=978266576" — no ADB required. Other Android TV apps (e.g., DirecTV Stream) already support this
pattern.
A name-based variant (?name=) would be especially useful since camera IDs are internal integers that aren't visible in
the UI.