tauri-plugin-native-camera 0.1.0

A Tauri plugin to capture photos using the device's native camera app
1
2
3
4
5
6
7
8
9
10
// Copyright 2026 Kushal Das
// SPDX-License-Identifier: MIT

const COMMANDS: &[&str] = &["take_picture"];

fn main() {
    tauri_plugin::Builder::new(COMMANDS)
        .android_path("android")
        .build();
}