PackageManager: hasSystemFeature: report that we support full multitouch

This commit is contained in:
Mis012
2025-06-10 00:51:18 +02:00
parent 55f57ebb2b
commit c90d685e6f

View File

@@ -2118,8 +2118,13 @@ public class PackageManager {
* false.
*/
public boolean hasSystemFeature(String name) {
switch (name) {
case "android.hardware.touchscreen.multitouch.distinct":
return true;
default:
Slog.e(TAG, "!!!!!!! hasSystemFeature: case >" + name + "< is not implemented yet");
return false; // FIXME
return false;
}
}
/**