android-apk

Builds native Android APKs using raw SDK command-line tools.

2|Updated Feb 19, 2026
One-click install
npx skills add https://github.com/HermeticOrmus/claude-code-skills --skill android-apk
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: android-apk
Source: https://github.com/HermeticOrmus/claude-code-skills/tree/main/android-apk
Command: npx skills add https://github.com/HermeticOrmus/claude-code-skills --skill android-apk

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill enables the creation of native Android APKs using only raw SDK command-line tools, bypassing the need for Android Studio and its associated overhead, resulting in significantly smaller and faster builds.

Core Features & Use Cases

  • Minimalist Builds: Generates tiny APKs (around 30KB) with build times under 2 seconds.
  • SDK Tooling: Utilizes javac, d8, aapt, and apksigner for a dependency-free build process.
  • Use Case: Ideal for creating lightweight Android share sheet integrations or companion apps for web tools that need to perform simple tasks like posting data to an API, without the bloat of a full IDE.

Quick Start

Execute the build.sh script to compile and package the Android application.

Frequently Asked Questions about android-apk

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

FAQPage Schema
How do I build an Android APK from the command line without Android Studio?

To build an Android APK without Android Studio, use raw SDK command-line tools like javac, d8, aapt, and apksigner to compile and package your application directly. This bypasses Gradle and IDE overhead.

Can I create a minimal Android share sheet app without using Gradle?

Yes, you can create minimal Android share sheet apps without Gradle by using SDK command-line tools. This approach generates tiny APKs suitable for lightweight tasks like posting data to an API.

What SDK tools do I need to compile an APK without an IDE?

Compiling an APK without an IDE requires the Android SDK command-line tools and a JDK. Specifically, the build process utilizes javac, d8, aapt, and apksigner to compile, package, and sign the application.

How fast are command-line Android APK builds compared to Gradle?

Command-line Android APK builds are significantly faster than Gradle, completing in under 2 seconds. This method generates very small APKs, around 30KB, by avoiding the overhead of a full IDE.

Do I need Android Studio to generate an APK for simple API data posting?

No, Android Studio is not needed to generate an APK for simple API data posting. You can use raw SDK command-line tools to build lightweight companion apps that perform simple tasks without IDE bloat.