ipaShip — ipaship-audit
Audit your iOS/Android app packages against official store policies before submission. Upload .ipa or .apk files and get a structured compliance report with guideline references, severity ratings, and actionable fixes.
When to Use
- Before submitting an iOS app to the Apple App Store — catch rejections early
- Before submitting an Android app to Google Play — identify policy violations
- During CI/CD to automate pre-submission compliance checks
- When reviewing third-party apps for compliance risks
- As part of a code review workflow for mobile apps
Setup
Prerequisites
| Requirement |
Details |
| Account |
ipaship.com — free to use |
| API Key |
Get yours at ipaship.com |
| App Package |
.ipa (iOS), .apk (Android), or .zip file (max 150MB) |
| Dependencies |
The server needs unzip installed |
Environment Variables
export IPASHIP_API_KEY="your-api-key-here"
Usage
1. Web Interface (No Code Required)
- Go to ipaship.com
- Upload your
.ipa or .apk file
- Select your AI provider (Claude, GPT, Gemini, or OpenRouter)
- Click "Audit" and wait for the streaming report
2. CLI via cURL
# Basic audit with default provider (Anthropic Claude)
curl -X POST https://ipaship.com/api/audit \
-H "Authorization: Bearer $IPASHIP_API_KEY" \
-F "file=@/path/to/your-app.ipa" \
-F "provider=anthropic" \
-F "model=claude-3-5-sonnet-20241022"
# With context about your app
curl -X POST https://ipaship.com/api/audit \
-H "Authorization: Bearer $IPASHIP_API_KEY" \
-F "file=@/path/to/your-app.ipa" \
-F "provider=anthropic" \
-F "model=claude-3-5-sonnet-20241022" \
-F "context=This is a social media app with user-generated content"
# Using OpenAI
curl -X POST https://ipaship.com/api/audit \
-H "Authorization: Bearer $IPASHIP_API_KEY" \
-F "file=@/path/to/your-app.apk" \
-F "provider=openai" \
-F "model=gpt-4o"
3. Python Wrapper
# wrappers/python/ipaship.py
from ipaship import audit_app
result = audit_app(
file_path="build/YourApp.ipa",
provider="anthropic",
model="claude-3-5-sonnet-20241022",
api_key="your-key"
)
print(result)
4. Programmatic — All Language Wrappers
The repo ships wrappers in 15+ languages under wrappers/:
| Language |
Path |
Status |
| Python |
wrappers/python/ipaship.py |
✅ |
| Node.js |
wrappers/npm/index.js |
✅ |
| Go |
wrappers/go/ipaship.go |
✅ |
| Rust |
wrappers/rust/src/main.rs |
✅ |
| Ruby |
wrappers/ruby/lib/ipaship.rb |
✅ |
| Java |
wrappers/java/ |
✅ |
| Kotlin |
wrappers/kotlin/ |
✅ |
| Swift |
wrappers/swift-cocoapods/ |
✅ |
| Flutter/Dart |
wrappers/flutter-dart/ |
✅ |
| PHP |
wrappers/php/ |
✅ |
| C++ |
wrappers/cpp/ |
✅ |
| C# (.NET) |
wrappers/csharp-dotnet/ |
✅ |
| R |
wrappers/r/ |
✅ |
| Expo |
wrappers/expo/ |
✅ |
| Homebrew |
wrappers/homebrew/ |
✅ |
Features
Supported AI Providers
| Provider |
Models |
| Anthropic |
Claude Sonnet 4, Claude 3.5 Sonnet, Claude 3 Opus |
| OpenAI |
GPT-4o, GPT-4o-mini |
| Google Gemini |
Gemini 2.5 Flash, Gemini 2.0 Pro |
| OpenRouter |
Any model (e.g., anthropic/claude-3.5-sonnet) |
| ipaShip (NVIDIA) |
Llama 3.1 405B, NVIDIA NIM models |
Audit Report Structure
Every report includes:
- Executive Summary — What the app does (from code analysis)
- Dashboard — Risk level (LOW/MEDIUM/HIGH), readiness score, issue counts
- Phase 1: Policy Compliance — Per-guideline checks with PASS/WARN/FAIL
- Phase 2: Remediation Plan — Prioritized fix table with file references
- Submission Readiness — Go/no-go verdict with score
Key Capabilities
- Multi-provider AI — Choose your preferred LLM backend
- Real-time streaming — Watch the audit generate live
- IPA & APK support — Both iOS and Android
- Export — Download as Markdown or PDF
- Zero-trust — Files deleted after analysis, API keys stay client-side
- Rate limited — 5 requests/minute per client (DDoS protection)
Common Pitfalls
- Forgetting
unzip — The server needs unzip installed to extract packages. If you see extraction errors, install it: sudo apt-get install unzip.
- File too large — Maximum upload size is 150MB. For larger apps, trim the .ipa/.apk first.
- No source files found — Ensure your app package isn't encrypted or DRM-protected. The auditor only analyzes readable source code (
.swift, .java, .kt, etc.).
- API key in the wrong place — The server uses
NVIDIA_KEY or NEXT_PUBLIC_API_KEY env vars for the backend. For BYOK (bring your own key), pass it in the upload form.
- Binary-only apps — Apps compiled without source code (e.g., Unity builds with only IL2CPP binaries) will have few files to analyze. The audit quality depends on available source.
Verification
After setting up:
- Deploy the app locally:
npm run dev
- Upload a test
.ipa or use the cURL command above
- Verify you get a streaming JSON response starting with
{"type":"meta","filesScanned":N}
- Check that the final report includes both Phase 1 (compliance checks) and Phase 2 (remediation plan)
- Test with different providers by changing the
provider field
References
1---2name: ipaship-audit3description: Use when auditing iOS/Android app submissions for compliance with Apple App Store Review Guidelines or Google Play Developer Policies. Scan .ipa, .apk, or .zip files against official store policies, generate structured compliance reports, and identify violations with remediation steps.4---56# ipaShip — ipaship-audit7Audit your iOS/Android app packages against official store policies before submission. Upload `.ipa` or `.apk` files and get a structured compliance report with guideline references, severity ratings, and actionable fixes.89## When to Use1011- Before submitting an iOS app to the **Apple App Store** — catch rejections early12- Before submitting an Android app to **Google Play** — identify policy violations13- During CI/CD to automate pre-submission compliance checks14- When reviewing third-party apps for compliance risks15- As part of a code review workflow for mobile apps1617## Setup1819### Prerequisites2021| Requirement | Details |22|-------------|---------|23| Account | [ipaship.com](https://ipaship.com) — free to use |24| API Key | Get yours at [ipaship.com](https://ipaship.com) |25| App Package | `.ipa` (iOS), `.apk` (Android), or `.zip` file (max 150MB) |26| Dependencies | The server needs `unzip` installed |2728### Environment Variables2930```bash31export IPASHIP_API_KEY="your-api-key-here"32```3334## Usage3536### 1. Web Interface (No Code Required)37381. Go to [ipaship.com](https://ipaship.com)392. Upload your `.ipa` or `.apk` file403. Select your AI provider (Claude, GPT, Gemini, or OpenRouter)414. Click "Audit" and wait for the streaming report4243### 2. CLI via cURL4445```bash46# Basic audit with default provider (Anthropic Claude)47curl -X POST https://ipaship.com/api/audit \48 -H "Authorization: Bearer $IPASHIP_API_KEY" \49 -F "file=@/path/to/your-app.ipa" \50 -F "provider=anthropic" \51 -F "model=claude-3-5-sonnet-20241022"5253# With context about your app54curl -X POST https://ipaship.com/api/audit \55 -H "Authorization: Bearer $IPASHIP_API_KEY" \56 -F "file=@/path/to/your-app.ipa" \57 -F "provider=anthropic" \58 -F "model=claude-3-5-sonnet-20241022" \59 -F "context=This is a social media app with user-generated content"6061# Using OpenAI62curl -X POST https://ipaship.com/api/audit \63 -H "Authorization: Bearer $IPASHIP_API_KEY" \64 -F "file=@/path/to/your-app.apk" \65 -F "provider=openai" \66 -F "model=gpt-4o"67```6869### 3. Python Wrapper7071```python72# wrappers/python/ipaship.py73from ipaship import audit_app7475result = audit_app(76 file_path="build/YourApp.ipa",77 provider="anthropic",78 model="claude-3-5-sonnet-20241022",79 api_key="your-key"80)81print(result)82```8384### 4. Programmatic — All Language Wrappers8586The repo ships wrappers in 15+ languages under `wrappers/`:8788| Language | Path | Status |89|----------|------|--------|90| Python | `wrappers/python/ipaship.py` | ✅ |91| Node.js | `wrappers/npm/index.js` | ✅ |92| Go | `wrappers/go/ipaship.go` | ✅ |93| Rust | `wrappers/rust/src/main.rs` | ✅ |94| Ruby | `wrappers/ruby/lib/ipaship.rb` | ✅ |95| Java | `wrappers/java/` | ✅ |96| Kotlin | `wrappers/kotlin/` | ✅ |97| Swift | `wrappers/swift-cocoapods/` | ✅ |98| Flutter/Dart | `wrappers/flutter-dart/` | ✅ |99| PHP | `wrappers/php/` | ✅ |100| C++ | `wrappers/cpp/` | ✅ |101| C# (.NET) | `wrappers/csharp-dotnet/` | ✅ |102| R | `wrappers/r/` | ✅ |103| Expo | `wrappers/expo/` | ✅ |104| Homebrew | `wrappers/homebrew/` | ✅ |105106## Features107108### Supported AI Providers109110| Provider | Models |111|----------|--------|112| **Anthropic** | Claude Sonnet 4, Claude 3.5 Sonnet, Claude 3 Opus |113| **OpenAI** | GPT-4o, GPT-4o-mini |114| **Google Gemini** | Gemini 2.5 Flash, Gemini 2.0 Pro |115| **OpenRouter** | Any model (e.g., `anthropic/claude-3.5-sonnet`) |116| **ipaShip (NVIDIA)** | Llama 3.1 405B, NVIDIA NIM models |117118### Audit Report Structure119120Every report includes:1211221. **Executive Summary** — What the app does (from code analysis)1232. **Dashboard** — Risk level (LOW/MEDIUM/HIGH), readiness score, issue counts1243. **Phase 1: Policy Compliance** — Per-guideline checks with PASS/WARN/FAIL1254. **Phase 2: Remediation Plan** — Prioritized fix table with file references1265. **Submission Readiness** — Go/no-go verdict with score127128### Key Capabilities129130- **Multi-provider AI** — Choose your preferred LLM backend131- **Real-time streaming** — Watch the audit generate live132- **IPA & APK support** — Both iOS and Android133- **Export** — Download as Markdown or PDF134- **Zero-trust** — Files deleted after analysis, API keys stay client-side135- **Rate limited** — 5 requests/minute per client (DDoS protection)136137## Common Pitfalls1381391. **Forgetting `unzip`** — The server needs `unzip` installed to extract packages. If you see extraction errors, install it: `sudo apt-get install unzip`.1402. **File too large** — Maximum upload size is 150MB. For larger apps, trim the .ipa/.apk first.1413. **No source files found** — Ensure your app package isn't encrypted or DRM-protected. The auditor only analyzes readable source code (`.swift`, `.java`, `.kt`, etc.).1424. **API key in the wrong place** — The server uses `NVIDIA_KEY` or `NEXT_PUBLIC_API_KEY` env vars for the backend. For BYOK (bring your own key), pass it in the upload form.1435. **Binary-only apps** — Apps compiled without source code (e.g., Unity builds with only IL2CPP binaries) will have few files to analyze. The audit quality depends on available source.144145## Verification146147After setting up:1481491. Deploy the app locally: `npm run dev`1502. Upload a test `.ipa` or use the cURL command above1513. Verify you get a streaming JSON response starting with `{"type":"meta","filesScanned":N}`1524. Check that the final report includes both Phase 1 (compliance checks) and Phase 2 (remediation plan)1535. Test with different providers by changing the `provider` field154155## References156157- [ipaShip Website](https://ipaship.com)158- [GitHub Repository](https://github.com/atharvnaik1/ipaship-audit)159- [Apple App Store Review Guidelines](https://developer.apple.com/app-store/review/guidelines/)160- [Google Play Developer Policy](https://play.google.com/about/developer-content-policy/)