[CoreHaptics] Remove the framework from Mac OS X until we know better. (#6987)

This commit is contained in:
Manuel de la Pena 2019-09-11 18:49:29 -04:00 коммит произвёл Sebastien Pouliot
Родитель 2a6d62dca3
Коммит 489719f56a
2 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -167,6 +167,7 @@ namespace MonoMac {
public const string PencilKitLibrary = "/System/Library/Frameworks/PencilKit.framework/PencilKit";
public const string SpeechLibrary = "/System/Library/Frameworks/Speech.framework/Speech";
public const string LinkPresentationLibrary = "/System/Library/Frameworks/LinkPresentation.framework/LinkPresentation";
public const string CoreHapticsLibrary = "/System/Library/Frameworks/CoreHaptics.framework/CoreHaptics";
// not clear if the api is available, issue: https://github.com/xamarin/maccore/issues/1951
//public const string CoreHapticsLibrary = "/System/Library/Frameworks/CoreHaptics.framework/CoreHaptics";
}
}

Просмотреть файл

@ -188,7 +188,8 @@ public class Frameworks : Dictionary <string, Framework>
{ "PencilKit", "PencilKit", 10,15 },
{ "Speech", "Speech", 10,15 },
{ "LinkPresentation", "LinkPresentation", 10,15 },
{ "CoreHaptics", "CoreHaptics", 10,15 },
// not sure if the API is available, issue: https://github.com/xamarin/maccore/issues/1951
//{ "CoreHaptics", "CoreHaptics", 10,15 },
};
}
return mac_frameworks;