Add CameraFeed support for Android
Co-authored-by: KOGA Mitsuhiro <shiena.jp@gmail.com>
This commit is contained in:
parent
209a446e36
commit
296ca79b9d
12 changed files with 666 additions and 2 deletions
|
|
@ -37,6 +37,12 @@
|
|||
<!-- Temp removal of the 'REQUEST_INSTALL_PACKAGES' permission as it's currently forbidden by the Horizon OS store -->
|
||||
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" tools:node="remove" />
|
||||
|
||||
<!-- Passthrough feature -->
|
||||
<uses-feature
|
||||
android:name="android.hardware.camera2.any"
|
||||
android:required="false"/>
|
||||
<uses-permission android:name="horizonos.permission.HEADSET_CAMERA"/>
|
||||
|
||||
<application>
|
||||
|
||||
<activity
|
||||
|
|
|
|||
|
|
@ -12,6 +12,9 @@
|
|||
<uses-feature
|
||||
android:glEsVersion="0x00030000"
|
||||
android:required="true" />
|
||||
<uses-feature
|
||||
android:name="android.hardware.camera"
|
||||
android:required="false" />
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
|
||||
|
|
@ -26,6 +29,7 @@
|
|||
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
||||
<uses-permission android:name="android.permission.VIBRATE" />
|
||||
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
||||
<uses-permission android:name="android.permission.CAMERA" />
|
||||
|
||||
<application
|
||||
android:allowBackup="false"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue