1 parent 51183d0 commit 1adc612Copy full SHA for 1adc612
1 file changed
src/controllers/hid/hidenumerator.cpp
@@ -73,6 +73,13 @@ bool recognizeDevice(const mixxx::hid::DeviceInfo& deviceInfo) {
73
74
// Exclude specific devices from the denylist.
75
for (const hid_denylist_t& denylisted : kHidDenyList) {
76
+#ifdef __ANDROID__
77
+ if (denylisted.vendor_id == kAnyValue &&
78
+ denylisted.product_id == kAnyValue) {
79
+ // these wildcard entries would deny any devices on Android, skip
80
+ continue;
81
+ }
82
+#endif
83
// If vendor ids are specified and do not match, skip.
84
if (denylisted.vendor_id != kAnyValue &&
85
vendor_id != denylisted.vendor_id) {
0 commit comments