Guideline 4.2
Guideline 4.2 - Design: Minimal Content or Features
Our Take
Apple rejected your app under Guideline 4.2 because it does not include enough content or features to qualify as a standalone App Store experience. Your app may function correctly, but Apple considers it too thin — it might be a single-purpose utility that could be a website, a feature within another app, or an app with placeholder content. This rejection signals that Apple does not believe your app provides sufficient value to justify a dedicated App Store listing.
Resolution Guide
**Audit your app through Apple’s lens** — Ask honestly: does this app provide more value than a website bookmark or a Shortcut? If not, you need to add features that justify a native app.
**Add depth to your core feature** — If your app does one thing, make it do that one thing exceptionally well with multiple layers:
- Customization and settings (themes, units, preferences)
- Data visualization or statistics about usage
- Share/export functionality
**Implement native iOS capabilities** — Features that prove your app needs to be native:
- Widgets (WidgetKit) for at-a-glance information
- Shortcuts/Siri integration for voice control
- Offline mode with local data persistence
- Live Activities for real-time status
**Add content depth** — If your app is content-based:
- Add search, filtering, and categorization
- Include user-generated content features (favorites, notes, ratings)
**Build complementary features** — Think about what naturally extends your core concept:
- A countdown timer → add multiple timers, categories, widgets, reminders
- A unit converter → add favorites, history, currency rates, AR measurement
**Remove placeholder content** — Every section must be fully functional at review time. Remove any “coming soon” labels, greyed-out tabs, or empty states that suggest the app isn’t finished.
**Write a clear review note** — In your resubmission, explain the full feature set and use cases. Sometimes apps are richer than they appear at first glance, and a clear review note helps the reviewer understand the depth.
Example Rejection Email
Consider Appealing
Appeals rarely succeed for this rejection unless the reviewer genuinely missed features. If your app has hidden depth (e.g., features behind onboarding, or a demo account is needed), reply in Resolution Center with a detailed walkthrough video and explicit instructions for accessing all features. Otherwise, add more features and resubmit — arguing that your app is “sufficient” without changes almost never works.
Before & After
App structure that was rejected for minimal functionality:
Expanded app structure that passed review:
What changed: The app went from a 2-screen utility to a full-featured conversion tool. Native iOS capabilities (widgets, Shortcuts, offline) prove it belongs as an app. History, favorites, and settings add depth that keeps users coming back.
// Entire app: one view with minimal interaction
struct ContentView: View {
@State private var input = ""
@State private var result = ""
var body: some View {
VStack {
TextField("Enter value", text: $input)
Button("Calculate") { result = calculate(input) }
Text(result)
}
}
}
// Rich app with tabs, history, widgets, and settings
@main
struct ConverterApp: App {
var body: some Scene {
WindowGroup {
TabView {
ConverterView()
.tabItem { Label("Convert", systemImage: "arrow.left.arrow.right") }
HistoryView()
.tabItem { Label("History", systemImage: "clock") }
FavoritesView()
.tabItem { Label("Favorites", systemImage: "star") }
SettingsView()
.tabItem { Label("Settings", systemImage: "gear") }
}
}
}
}
// Plus: WidgetBundle, AppIntents for Shortcuts, Core Data persistence
What changed: The single-view app was expanded into a tabbed application with four main sections. Adding History, Favorites, and Settings gives the app depth, while WidgetKit and AppIntents integration demonstrates native platform value that justifies an App Store listing.
Community Solutions · 0
Sign in to share your solution.
More Guideline 4 (Design) rejections
- Guideline 4.0 - Design: App Does Not Include iOS Features
- Guideline 4.0 - Design: App Looks Like a Website
- Guideline 4.0 - Design: Apple Pay Button Not Following Guidelines
- Guideline 4.0 - Design: Blurry Icons or Low-Resolution Assets
- Guideline 4.0 - Design: Broken Layout on iPad
- Guideline 4.0 - Design: Content Clipped by Notch or Safe Area