tauri-plugin-ios-network-detect

Crates.iotauri-plugin-ios-network-detect
lib.rstauri-plugin-ios-network-detect
version2.0.1
created_at2025-03-02 02:26:10.009215+00
updated_at2025-03-02 08:44:09.320949+00
descriptionA plugin that detects iOS network permission status and automatically displays an authorization.
homepage
repositoryhttps://github.com/kingsword09/tauri-plugins-workspace
max_upload_size
id1574186
size130,593
Kingsword (kingsword09)

documentation

README

Tauri Plugin ios-network-detect

Platform Supported
Linux x
Windows x
macOS x
Android x
iOS

Install

This plugin requires a Rust version of at least 1.77.2

There are three general methods of installation that we can recommend.

  1. Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked)
  2. Pull sources directly from Github using git tags / revision hashes (most secure)
  3. Git submodule install this repo in your tauri project and then use file protocol to ingest the source (most secure, but inconvenient to use)

Install the Core plugin by adding the following to your Cargo.toml file:

src-tauri/Cargo.toml

Manually

[target.'cfg(any(target_os = "ios"))'.dependencies]
tauri-plugin-ios-network-detect = "2.0.1"

Automatically

use the cargo add command to install it automatically (iOS target only):

cargo add tauri-plugin-ios-network-detect --target 'cfg(target_os = "ios")'

Usage

First you need to register the core plugin with Tauri:

src-tauri/src/lib.rs

pub fn run() {
  tauri::Builder::default()
    .setup(|app| {
      #[cfg(target_os = "ios")]
      app.handle().plugin(tauri_plugin_ios_network_detect::init())?;

      Ok(())
    })
    .plugin(tauri_plugin_opener::init())
    .invoke_handler(tauri::generate_handler![greet])
    .run(tauri::generate_context!())
    .expect("error while running tauri application");
}
Commit count: 36

cargo fmt