tauri-plugin-native-camera 0.1.0

A Tauri plugin to capture photos using the device's native camera app
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2026 Kushal Das -->
<!-- SPDX-License-Identifier: MIT -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">
    <!-- Camera permission - required to use the camera -->
    <uses-permission android:name="android.permission.CAMERA" />

    <!-- Declare that this app uses the camera feature (not required) -->
    <uses-feature
        android:name="android.hardware.camera"
        android:required="false" />
    <uses-feature
        android:name="android.hardware.camera.autofocus"
        android:required="false" />

    <!-- Required for Android 11+ to query for camera apps -->
    <queries>
        <intent>
            <action android:name="android.media.action.IMAGE_CAPTURE" />
        </intent>
    </queries>
</manifest>