When to use this skill
ALWAYS use this skill when the user mentions:
- Android or iOS builds for a Tauri app
- Mobile debugging or running on devices/emulators
- Bundle identifier (bundle ID) configuration
Trigger phrases include:
- "mobile", "android", "ios", "bundle id", "mobile debug", "emulator"
How to use this skill
- Initialize mobile support:
npm run tauri android init npm run tauri ios init - Configure bundle identifiers in
tauri.conf.json:{ "identifier": "com.example.myapp" } - Run on Android emulator or device:
npm run tauri android dev - Run on iOS simulator:
npm run tauri ios dev - Debug mobile: Use Chrome DevTools for Android WebView debugging or Safari Web Inspector for iOS
- Prerequisites: Android Studio with NDK installed for Android; Xcode for iOS
- Handle responsive UI by testing across different screen sizes and orientations
Outputs
- Mobile project initialization commands
- Bundle identifier configuration
- Dev/debug workflow for Android and iOS
- Prerequisite checklist (Android Studio, Xcode)
References
- https://v2.tauri.app/mobile/
- https://v2.tauri.app/mobile/development/
Keywords
tauri mobile, android, ios, bundle id, mobile debugging, emulator