Google to require developer verification to install and sideload Android apps

Hacker News (score: 29)
Found: August 25, 2025
ID: 1055

Description

Other
Google to require developer verification to install and sideload Android apps

More from Hacker

Show HN: CrabCamera – Cross-platform camera plugin for Tauri desktop apps

Show HN: CrabCamera – Cross-platform camera plugin for Tauri desktop apps After building several Tauri desktop apps, I kept hitting the same wall: there&#x27;s no reliable way to access cameras across Windows, macOS, and Linux. Every project meant reinventing camera integration, dealing with platform-specific APIs, and debugging permission issues.<p><pre><code> So I built CrabCamera – a Tauri plugin that handles all the camera complexity for you. What it does: - One API, three platforms: Same Rust code works on Windows (DirectShow), macOS (AVFoundation), and Linux (V4L2) - Permission handling: Automatically requests camera permissions on each platform - Format conversion: Takes care of the messy bits between platform formats and what your app needs - Error handling: Proper Rust error types instead of mysterious crashes - Hot-plugging: Detects when cameras are connected&#x2F;disconnected The problem it solves: Before CrabCamera, adding camera support to a Tauri app meant: 1. Writing separate native code for each platform 2. Managing three different permission systems 3. Handling format conversions manually 4. Debugging platform-specific edge cases 5. Maintaining it all as OS APIs change Now it&#x27;s just: use crabcamera::Camera; let camera = Camera::new()?; let frame = camera.capture_frame().await?; Why I built it: I was working on a plant monitoring app (botanica) that needed reliable camera access for time-lapse photography. Existing solutions were either abandoned, platform-specific, or required complex native bindings. The Tauri ecosystem is growing fast, but camera support was this obvious gap. Every desktop app eventually needs camera access – video calls, document scanning, AR features, security monitoring. Technical highlights: - Uses nokhwa for the heavy lifting but wraps it in Tauri-friendly APIs - Proper async&#x2F;await support throughout - Memory-efficient streaming for video capture - Built-in image processing pipeline - Extensible plugin architecture What&#x27;s next: - WebRTC integration for video calls - Built-in barcode&#x2F;QR code scanning - Face detection hooks - Performance optimizations for 4K streams The crate is MIT licensed and available on crates.io. I&#x27;d love feedback from other Tauri developers who&#x27;ve wrestled with camera integration. Links: - Crates.io: https:&#x2F;&#x2F;crates.io&#x2F;crates&#x2F;crabcamera - GitHub: https:&#x2F;&#x2F;github.com&#x2F;Michael-A-Kuykendall&#x2F;crabcamera - Documentation: https:&#x2F;&#x2F;docs.rs&#x2F;crabcamera</code></pre>

EloqKV, a distributed database with Redis compatible API (GPLv2 and AGPLv3)

EloqKV, a distributed database with Redis compatible API (GPLv2 and AGPLv3)

No other tools from this source yet.