diff --git a/android/app/src/main/java/me/kavishdevar/librepods/presentation/screens/AirPodsSettingsScreen.kt b/android/app/src/main/java/me/kavishdevar/librepods/presentation/screens/AirPodsSettingsScreen.kt
index b01b1b06..1fa8f16e 100644
--- a/android/app/src/main/java/me/kavishdevar/librepods/presentation/screens/AirPodsSettingsScreen.kt
+++ b/android/app/src/main/java/me/kavishdevar/librepods/presentation/screens/AirPodsSettingsScreen.kt
@@ -832,10 +832,17 @@ fun AirPodsSettingsScreen(
)
} else {
Text(
- text = stringResource(R.string.not_connected),
+ text = stringResource(R.string.airpods_not_connected),
style = MaterialTheme.typography.labelMediumEmphasized,
color = MaterialTheme.colorScheme.primary
)
+ if (sharedPreferences.getBoolean("bypass_device_check.v2", false)) {
+ Text(
+ text = stringResource(R.string.compatibility_check_bypassed),
+ style = MaterialTheme.typography.labelSmallEmphasized,
+ color = MaterialTheme.colorScheme.onSurface
+ )
+ }
}
}
diff --git a/android/app/src/main/res/values/strings.xml b/android/app/src/main/res/values/strings.xml
index 3356edc4..c2c3f7a3 100644
--- a/android/app/src/main/res/values/strings.xml
+++ b/android/app/src/main/res/values/strings.xml
@@ -290,4 +290,5 @@
Permissions
Privacy Policy
I agree
+ Compatibility check bypassed. Are you sure your device is compatible?