From 28b6a02300745d97bb658250eb21f68dccf36f88 Mon Sep 17 00:00:00 2001 From: Avichal Rakesh Date: Wed, 25 Jan 2023 14:55:31 -0800 Subject: [PATCH] Add DeviceAsWebcam to general handheld_system DeviceAsWebcam is a new service that lets an Android Device be used as a UVC webcam. The logic in DeviceAsWebcam is protected behind the vendor property `ro.usb.uvc.enabled`. Vendors who support UVC will need to set the property to `true` using something like ``` PRODUCT_VENDOR_PROPERTIES += \ ro.usb.uvc.enabled?=true ``` Bug: 242344221 Test: Manually tested that the makefile is correctly inherited from. Change-Id: I9b8444406f1c02fc8b76caee3e961016d9430a0a --- target/product/handheld_system.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/target/product/handheld_system.mk b/target/product/handheld_system.mk index 2da1395c99..3009d6a4dd 100644 --- a/target/product/handheld_system.mk +++ b/target/product/handheld_system.mk @@ -43,6 +43,7 @@ PRODUCT_PACKAGES += \ CaptivePortalLogin \ CertInstaller \ CredentialManager \ + DeviceAsWebcam \ DocumentsUI \ DownloadProviderUi \ EasterEgg \