mobile-games

Guides mobile game development covering touch input, performance, and app store requirements.

Updated Jun 30, 2026
One-click install
npx skills add https://github.com/kaitoartz/dotfiles --skill mobile-games-kaitoartz
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: mobile-games
Source: https://github.com/kaitoartz/dotfiles/tree/main/dot_gemini/config/skills/game-development/mobile-games
Command: npx skills add https://github.com/kaitoartz/dotfiles --skill mobile-games-kaitoartz

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Mobile game developers face unique platform constraints like imprecise touch input, battery drain, thermal throttling, and strict app store requirements that desktop-focused guidance does not address. ## Core Features & Use Cases - Touch Input Design: Principles for touch targets, gestures, and occlusion handling versus controller-based input. - Performance & Battery Optimization: Thermal management triggers, FPS targets, and battery-saving strategies for mobile hardware. - App Store Compliance: iOS App Store and Google Play requirements including privacy labels, 64-bit support, and app bundles. - Use Case: When porting a desktop game to iOS and Android, use this Skill to redesign controls for touch, set thermal throttling rules, and verify store submission requirements. ## Quick Start Review my mobile game design and list the touch input, battery, and app store requirements I need to address before release.

Frequently Asked Questions about mobile-games

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

FAQPage Schema
How do I design touch controls for mobile games?▼

Design touch controls with minimum 44x44 point hit areas, visual feedback on touch, and gesture support. Avoid precise timing requirements since touch is imprecise and occludes the screen, unlike controllers.

What are the app store requirements for mobile games?▼

iOS requires privacy labels, account deletion options, and screenshots for all device sizes. Google Play requires targeting the current year's SDK, 64-bit support, and recommends app bundles for distribution.

How to optimize mobile game battery usage?▼

Optimize battery by targeting 30 FPS when sufficient, sleeping when paused, and minimizing GPS and network calls. Dark mode also saves battery on OLED screens.

Which monetization model works best for mobile games?▼

Premium suits quality games with loyal audiences, free with IAP fits casual progression games, ads work for hyper-casual high-volume titles, and subscriptions fit games with ongoing content updates or multiplayer.

Why does my mobile game overheat devices?▼

Overheating comes from sustained CPU and GPU load. Implement thermal management by reducing quality when the device is warm, limiting FPS when hot, and pausing effects at critical temperatures.