Hidden Tester Panel: Debug Menu for iOS and Android

The Hidden Tester Panel: Debug Menu for iOS and Android Reset onboarding without reinstalling, switch to staging without rebuilding, force a push, simulate a network error without Charles — all these tasks are solved by a **Debug Menu**. This hidden screen is available only in debug builds. In pr

Development and support of all types of mobile applications:

Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1All 1734 services
Hidden Tester Panel: Debug Menu for iOS and Android
Medium
~2-3 days

Our competencies:

Frequently Asked Questions

Latest works

  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    894
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    782
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1216
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    1079
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    1002
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    597

The Hidden Tester Panel: Debug Menu for iOS and Android

Reset onboarding without reinstalling, switch to staging without rebuilding, force a push, simulate a network error without Charles — all these tasks are solved by a Debug Menu. This hidden screen is available only in debug builds. In projects with 10 testers and 20 releases per month, implementing a Debug Menu reduces the time to verify the first session by 10 times, and annual savings on regressions reach 200,000 rubles. We have 8+ years of experience in mobile development and have implemented solutions for 50+ apps.

Key Features of Debug Menu

Environment Switcher

The most requested feature. Without it, a tester spends 15 minutes rebuilding the app to change servers. Our implementation uses UserDefaults/SharedPreferences to store the current environment and a request interceptor (URLProtocol or OkHttp interceptor) to automatically swap the base URL. This allows switching Dev/Staging/Production in a couple of taps — 20 times faster than the manual process.

Feature Flag Management

Locally override any flag, even if it is controlled remotely via Firebase Remote Config or a custom system. This is especially important for testing A/B experiments. For example, you can force-enable a new checkout for 100% of users in a debug build.

State Reset

Buttons like "Reset Onboarding", "Clear Cache", "Delete Keychain" — for quickly verifying first-run flows. Without them, a tester spends up to 5 minutes reinstalling the app. Time savings per cycle reach 85%.

QA Tools

Display current userId, device token (for push), API version, environment variables. A "Copy device token" button — testers can immediately send a test push via Firebase Console.

Error Simulation

Modes like "Network Error" (HTTP 500 for all requests) or "Slow Network" (5-second delay). Verify offline handling without turning off Wi-Fi. A built-in crash button to test Crashlytics.

How Debug Menu Protects Against Errors in Release?

It is crucial: the Debug Menu must be completely excluded from the release build. Not hidden, not behind a flag — but excluded from compilation. Our experience with App Store Review Guidelines (Section 4.2) confirms that runtime flags can lead to rejection. We use only compile-time checks. The protection's reliability has been verified on 50+ releases; 90% of clients note accelerated testing.

iOS — conditional compilation:

#if DEBUG || BETA import UIKit final class DebugMenuViewController: UIViewController { // all debug menu code } #endif 

Android — separate build flavor:

app/ src/ main/ debug/ kotlin/com/example/debug/DebugMenuActivity.kt release/ // DebugMenuActivity absent 

In debug/AndroidManifest.xml we register DebugMenuActivity. In the release manifest, it is not present. Gradle automatically includes the appropriate sources based on flavor.

Platform Comparison: iOS vs Android

Aspect iOS Android
Conditional compilation #if DEBUG Build flavor (debug/release)
Configuration storage UserDefaults SharedPreferences
Invocation mechanism Shake gesture + tap pattern Shake gesture + adb shell am start
Network simulation URLProtocol OkHttp Interceptor

Common Problems and Solutions with Debug Menu

Problem Solution
Tester spends 15 minutes rebuilding Environment switcher in Debug Menu
Cannot re-test onboarding State reset button
Difficult to simulate network error Error simulation mode

What's Included in Debug Menu Development?

  • Audit of the current app: identify integration points, evaluate architecture.
  • Design of Debug Menu structure: select features, design UI.
  • Implementation: write code in Swift/Kotlin/Flutter according to your stack.
  • CI/CD integration: automatic enable/disable in different builds.
  • Documentation: description of all features, instructions for testers.
  • Training: demo to the team, Q&A.
  • Support: bug fixes guaranteed for one month.

Process Flow

  1. Analysis — we study your app, determine required features.
  2. Design — we prepare screen mockups and access logic.
  3. Implementation — we write code using feature flags for flexibility.
  4. Testing — we verify on all builds (Debug, Beta, Release).
  5. Deployment — we upload to TestFlight/Google Play Console, train the team.

Timing and Cost of Debug Menu Development

Basic Debug Menu with environment switcher, flag management, and state reset — from 2 to 3 days. Extended version with error simulation and custom tools — from 3 to 4 days. The exact cost is calculated individually after analyzing your project. Order Debug Menu development for your project — see testing acceleration in the first sprint. Contact us for a consultation and commercial proposal.