mobile-developer

Guide React Native development for iOS and Android apps.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/sonyho2715/lee-meadows-saas --skill mobile-developer-sonyho2715
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: mobile-developer
Source: https://github.com/sonyho2715/lee-meadows-saas/tree/main/.claude/skills/mobile-developer
Command: npx skills add https://github.com/sonyho2715/lee-meadows-saas --skill mobile-developer-sonyho2715

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Mobile development often requires juggling platform-specific UI patterns, native integrations, performance constraints, offline synchronization, and app store deployment details that slow down delivery and increase bugs; this Skill provides focused, practical guidance and patterns to accelerate cross-platform React Native development and reduce platform friction.

Core Features & Use Cases

  • React Native project setup: Recommended workflows for Expo and bare React Native projects, plus navigation and state management choices.
  • Native integrations: Guidance for camera, location, push notifications, biometrics, and writing or wiring native modules.
  • Performance and offline: Best practices for lists, image caching, memoization, background tasks, and offline-first sync strategies.
  • Testing and deployment: Unit/e2e test patterns, TestFlight/Google Play release steps, and code signing considerations.
  • Use Case: Build a cross-platform social app that records photos, caches feeds for offline viewing, uses biometrics for secure login, and ships to both App Store and Google Play.

Quick Start

Create a new Expo React Native project, add bottom tab navigation, integrate the camera and secure local storage, and implement offline caching for user sessions.

Frequently Asked Questions about mobile-developer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I integrate native modules for camera and biometrics in React Native?▼

To integrate native modules for camera and biometrics in React Native, you wire platform-specific APIs on iOS and Android, enabling secure photo capture and authentication within your cross-platform application.

What is the best way to implement offline-first sync in a React Native app?▼

To implement offline-first sync in a React Native app, you use secure local storage to cache data and background tasks to queue changes, syncing with your server when network connectivity is restored.

How do I handle React Native performance tuning for long lists and image caching?▼

For React Native performance tuning of long lists and image caching, you apply memoization techniques and optimized image handling strategies to reduce render cycles and improve scrolling responsiveness.

Does this guidance cover app store deployment for both iOS and Android?▼

Yes, app store deployment guidance covers both iOS and Android, detailing TestFlight and Google Play release steps alongside code signing considerations for production React Native builds.

Can I use Expo for React Native project setup with offline-first requirements?▼

Yes, you can use Expo for React Native project setup with offline-first requirements by combining its managed workflows with secure local storage and background task patterns to cache data.

What testing strategies are recommended for cross-platform mobile applications?▼

Recommended testing strategies for cross-platform mobile applications include unit and end-to-end test patterns to validate JavaScript logic and native module integrations across iOS and Android environments.