How to Fix 'This App Is Incompatible with Your Device' Error in Google Play Closed Testing (2026)

C
CloseTesting Support Team
Jul 29, 2026·5 min read
How to Fix 'This App Is Incompatible with Your Device' Error in Google Play Closed Testing (2026)
Fix Device Incompatibility Error Banner

Step-by-step resolution for "This app is incompatible with your device" on Google Play

When running a 14-day Closed Testing track with 12 manual testers, few errors are more frustrating than a tester clicking the opt-in link only to see: 'This app is incompatible with your device.' This blocks testers from installing your APK/AAB build.

4 Common Causes of Device Incompatibility

1. High Minimum SDK (minSdkVersion)

If your Android build specifies `minSdkVersion 31` (Android 12), any tester using Android 10 or 11 will see an incompatibility error. Consider setting `minSdkVersion 24` (Android 7.0) or `26` (Android 8.0) in your `build.gradle` to support over 95% of active devices.

2. Native CPU Architecture (ABI Filters)

Building native C/C++ libraries or Flutter/React Native apps with missing ABI targets (such as `armeabi-v7a` or `x86_64`) prevents certain chipsets from running the app. Ensure your Android App Bundle (AAB) includes 64-bit (`arm64-v8a`) and 32-bit binaries.

3. Mandatory Hardware Permissions in AndroidManifest.xml

Declaring `<uses-permission android:name="android.permission.CAMERA" />` without setting `android:required="false"` forces Google Play to filter out devices that lack dedicated hardware modules (like tablets or Android TV boxes).

Fix: Always set `android:required="false"` for non-essential features in your `AndroidManifest.xml`:

<uses-feature android:name="android.hardware.camera" android:required="false" />

4. Device Catalog Exclusions in Google Play Console

Check Google Play Console → Release → Device Catalog → Excluded Devices. Ensure you haven't accidentally filtered out specific OEMs (like Xiaomi, Samsung, or Realme).

C

CloseTesting Support Team

Official guide by the CloseTesting editorial team. Helping Android developers meet Google Play requirements with 12 real testers for 14 continuous days.

Learn more about CloseTesting →
Pass Google Play Closed Testing

Need 12 Real Testers for Your Android App?

Get 12 verified human testers on real Android devices. Pass the 14-day testing requirement on your first attempt with daily active tracking and zero risk.