launch-on-device
Build, install, and launch the Zhihu++ Android app on a connected device using ADB. Includes comprehensive troubleshooting for common issues like missing devices, installation failures, signature mismatches, and app crashes. Use when deploying debug builds to physical devices or emulators.
Install
mkdir -p .claude/skills/launch-on-device && curl -L -o skill.zip "https://mcp.directory/api/skills/download/4888" && unzip -o skill.zip -d .claude/skills/launch-on-device && rm skill.zipInstalls to .claude/skills/launch-on-device
About this skill
Launch on Device Skill
Overview
This skill documents how to build, install, and launch the Zhihu++ Android app on a connected device using ADB (Android Debug Bridge).
Prerequisites
- ADB installed and available in PATH
- Android device connected via USB or wireless ADB
- USB debugging enabled on device
- Project built successfully
Quick Start
# 1. Build the lite debug APK
./gradlew assembleLiteDebug
# 2. Install and launch on device
adb install -r ./app/build/outputs/apk/lite/debug/app-lite-debug.apk
adb shell am start -n com.github.zly2006.zhplus.lite/com.github.zly2006.zhihu.MainActivity
Detailed Workflow
Step 1: Check ADB Connection
# Check if adb is available
which adb
# Check adb version
adb --version
# List connected devices
adb devices
Expected output:
List of devices attached
<device-id> device
Step 2: Build the APK
cd /path/to/Zhihu
./gradlew assembleLiteDebug --quiet
The APK will be generated at: ./app/build/outputs/apk/lite/debug/app-lite-debug.apk
Step 3: Install APK to Device
# Install with -r flag to replace existing installation
adb install -r ./app/build/outputs/apk/lite/debug/app-lite-debug.apk
Expected output: Success
Step 4: Launch the App
# Launch the main activity
adb shell am start -n com.github.zly2006.zhplus.lite/com.github.zly2006.zhihu.MainActivity
Expected output: Starting: Intent { cmp=com.github.zly2006.zhplus.lite/com.github.zly2006.zhihu.MainActivity }
App Variants
The project has two build variants:
-
Lite Version (recommended for development)
- Package:
com.github.zly2006.zhplus.lite - APK:
./app/build/outputs/apk/lite/debug/app-lite-debug.apk - Main Activity:
com.github.zly2006.zhihu.MainActivity
- Package:
-
Full Version
- Package:
com.github.zly2006.zhplus - APK:
./app/build/outputs/apk/full/debug/app-full-debug.apk - Main Activity:
com.github.zly2006.zhihu.MainActivity
- Package:
Common Issues and Solutions
Issue 1: ADB Server Not Running
Symptom:
error: could not connect to daemon
Solution:
# Kill and restart adb server
adb kill-server
adb start-server
adb devices
Issue 2: No Devices Connected
Symptom:
List of devices attached
(empty list)
Solutions:
a) USB Connection Issues:
# Check USB cable and connection
# Replug the device
# Check device is in USB debugging mode
# Accept USB debugging prompt on device
b) Unauthorized Device:
# Check device screen for authorization dialog
# Accept "Allow USB debugging" prompt
# Check again
adb devices
c) Wireless ADB Connection:
# If using wireless ADB, reconnect
adb connect <device-ip>:5555
Issue 3: APK Not Found
Symptom:
adb: failed to stat ./app/build/outputs/apk/lite/debug/app-lite-debug.apk: No such file or directory
Solution:
# Build the APK first
./gradlew assembleLiteDebug
# Verify APK exists
ls -lh ./app/build/outputs/apk/lite/debug/app-lite-debug.apk
# If still not found, clean and rebuild
./gradlew clean assembleLiteDebug
Issue 4: Installation Failed (INSTALL_FAILED_UPDATE_INCOMPATIBLE)
Symptom:
Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE: Existing package com.github.zly2006.zhplus.lite signatures do not match newer version]
Solution:
# Uninstall existing app first
adb uninstall com.github.zly2006.zhplus.lite
# Then install again
adb install ./app/build/outputs/apk/lite/debug/app-lite-debug.apk
Issue 5: Installation Failed (Insufficient Storage)
Symptom:
Failure [INSTALL_FAILED_INSUFFICIENT_STORAGE]
Solution:
# Check device storage
adb shell df -h
# Free up space on device or uninstall unused apps
adb shell pm list packages | grep -i <package-pattern>
adb uninstall <package-name>
Issue 6: Multiple Devices Connected
Symptom:
error: more than one device/emulator
Solution:
# List devices to get device ID
adb devices
# Use -s flag to specify target device
adb -s <device-id> install -r ./app/build/outputs/apk/lite/debug/app-lite-debug.apk
adb -s <device-id> shell am start -n com.github.zly2006.zhplus.lite/com.github.zly2006.zhihu.MainActivity
Issue 7: App Crashes on Launch
Symptom: App installs but crashes immediately after launch.
Solution:
# Check logcat for crash details
adb logcat | grep -i "AndroidRuntime\|FATAL\|zhplus"
# Or filter by app package
adb logcat --pid=$(adb shell pidof -s com.github.zly2006.zhplus.lite)
# Clear app data and try again
adb shell pm clear com.github.zly2006.zhplus.lite
adb shell am start -n com.github.zly2006.zhplus.lite/com.github.zly2006.zhihu.MainActivity
Issue 8: Activity Not Found
Symptom:
Error: Activity class {...} does not exist.
Solution:
# Verify package is installed
adb shell pm list packages | grep zhplus
# Check main activity from manifest
adb shell dumpsys package com.github.zly2006.zhplus.lite | grep -A 1 "android.intent.action.MAIN:"
# Use correct activity name
adb shell am start -n com.github.zly2006.zhplus.lite/com.github.zly2006.zhihu.MainActivity
Useful ADB Commands
App Management
# List installed packages
adb shell pm list packages | grep zhplus
# Get app installation path
adb shell pm path com.github.zly2006.zhplus.lite
# Clear app data
adb shell pm clear com.github.zly2006.zhplus.lite
# Uninstall app
adb uninstall com.github.zly2006.zhplus.lite
# Force stop app
adb shell am force-stop com.github.zly2006.zhplus.lite
# Get app info
adb shell dumpsys package com.github.zly2006.zhplus.lite
Device Information
# Get device properties
adb shell getprop ro.build.version.release # Android version
adb shell getprop ro.product.model # Device model
adb shell getprop ro.product.manufacturer # Manufacturer
# Check storage space
adb shell df -h
# Get device battery status
adb shell dumpsys battery
# Take screenshot
adb exec-out screencap -p > screenshot.png
Debugging
# View real-time logs
adb logcat
# Filter logs by tag
adb logcat -s TAG_NAME
# Filter logs by package
adb logcat --pid=$(adb shell pidof -s com.github.zly2006.zhplus.lite)
# Save logs to file
adb logcat -d > logcat.txt
# Clear log buffer
adb logcat -c
Complete One-Line Command
For quick deployment after code changes:
./gradlew assembleLiteDebug && adb install -r ./app/build/outputs/apk/lite/debug/app-lite-debug.apk && adb shell am start -n com.github.zly2006.zhplus.lite/com.github.zly2006.zhihu.MainActivity
Advanced: Automatic Build and Deploy Script
Create a script deploy.sh:
#!/bin/bash
set -e # Exit on error
echo "🔨 Building lite debug APK..."
./gradlew assembleLiteDebug --quiet
APK_PATH="./app/build/outputs/apk/lite/debug/app-lite-debug.apk"
PACKAGE_NAME="com.github.zly2006.zhplus.lite"
ACTIVITY="com.github.zly2006.zhihu.MainActivity"
# Check if APK was built
if [ ! -f "$APK_PATH" ]; then
echo "❌ APK not found at $APK_PATH"
exit 1
fi
echo "📱 Checking device connection..."
DEVICE_COUNT=$(adb devices | grep -w "device" | wc -l)
if [ "$DEVICE_COUNT" -eq 0 ]; then
echo "❌ No devices connected"
echo "Please connect a device and enable USB debugging"
exit 1
fi
if [ "$DEVICE_COUNT" -gt 1 ]; then
echo "⚠️ Multiple devices connected:"
adb devices
echo "Please specify device with: adb -s <device-id>"
exit 1
fi
echo "📦 Installing APK..."
if adb install -r "$APK_PATH" 2>&1 | grep -q "Success"; then
echo "✅ Installation successful"
else
echo "⚠️ Installation failed, trying to uninstall first..."
adb uninstall "$PACKAGE_NAME" 2>/dev/null || true
if adb install "$APK_PATH" 2>&1 | grep -q "Success"; then
echo "✅ Installation successful after uninstall"
else
echo "❌ Installation failed"
exit 1
fi
fi
echo "🚀 Launching app..."
adb shell am start -n "$PACKAGE_NAME/$ACTIVITY"
echo "✨ Done! App should be launching on your device."
Make it executable:
chmod +x deploy.sh
./deploy.sh
Troubleshooting Checklist
When things don't work, check these in order:
- ✅ Is ADB installed? →
which adb - ✅ Is ADB server running? →
adb devices - ✅ Is device connected? → Should show
devicestatus - ✅ Is USB debugging enabled on device?
- ✅ Is USB debugging authorized? → Accept prompt on device
- ✅ Is APK built? → Check
./app/build/outputs/apk/lite/debug/ - ✅ Is package name correct? →
com.github.zly2006.zhplus.lite - ✅ Is activity name correct? →
com.github.zly2006.zhihu.MainActivity - ✅ Check logs for errors →
adb logcat
References
- ADB Documentation
- Android Build Types
- Project build config:
./app/build.gradle.kts - App manifest:
./app/src/main/AndroidManifest.xml
Last Updated: 2026-02-03
Tested with: ADB 1.0.41, Android SDK Platform Tools 36.0.2
You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
fastapi-templates
wshobson
Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.
Related MCP Servers
Browse all serversPhone Control (Android ADB): Remotely manage Android phones with ADB—make calls, send texts, launch apps, manage contact
MCP Science: Easily discover and run scientific research MCP servers from the Path Integral Institute with automated set
Bridge AI and Android devices using Android Debug Bridge for Windows. Manage devices, run shell commands, and install ap
Manage Android devices with ADB: execute shell commands, install apps, capture screenshots, and transfer files for effic
Skill Management is workflow automation software that builds, organizes, and executes maintainable software workflows wi
Automate android mobile application development in VS Code with Android Build—streamline building, testing & error repor
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.