xamarin-macios/tests/xtro-sharpie/common.ignore

74 строки
2.7 KiB
Plaintext
Исходник Обычный вид История

2016-05-26 16:06:52 +03:00
# AVFoundation
# We only bind "finished" as we cannot use [Bind] here as it would break compatibility with iOS 6.x
# `isFinished` was only added in iOS 7.0 SDK and cannot be called in earlier versions
!missing-selector! AVAssetResourceLoadingRequest::isFinished not bound
# it's already defined in the base class, it's fine even if it returns mutable tracks in this case
!missing-selector! AVMutableComposition::tracks not bound
# AVVideoCompositionInstruction is both a class and a protocol - so we have duplicate entries
# and right now only implement the type (protocol can't have the same name anyway)
!missing-selector! AVVideoCompositionInstruction::enablePostProcessing not bound
!missing-selector! AVVideoCompositionInstruction::passthroughTrackID not bound
!missing-selector! AVVideoCompositionInstruction::requiredSourceTrackIDs not bound
!missing-selector! AVVideoCompositionInstruction::timeRange not bound
# CoreGraphics
## deprecated (as the name indicates) and not exposed
!missing-enum! CGGlyphDeprecatedEnum not bound
# CoreSpotlight
## low value (should use OS version for any checks)
!missing-field! CoreSpotlightVersionNumber not bound
!missing-field! CoreSpotlightVersionString not bound
# Foundation
## native long is same size as int (.net long is long long)
!missing-selector! NSNumber::initWithLong: not bound
!missing-selector! NSNumber::initWithUnsignedLong: not bound
# GameKit
## All GKSessionError values were deprecated in iOS7 and we never bound then (no point in adding it now)
!missing-field! GKSessionErrorDomain not bound
2016-08-28 19:18:18 +03:00
# Intents
## not exposed by our API (better use the OS version)
!missing-field! IntentsVersionNumber not bound
!missing-field! IntentsVersionString not bound
2016-05-26 16:06:52 +03:00
[watchos][cloudkit] Complete support of CloudKit on watchOS (#578) Also apply fixes based on xtro results. Most of them are likely because the iOS frameworks contains out-dated headers wrt watchOS. references: * Missing fields /API !missing-field! CKShareThumbnailImageDataKey not bound !missing-field! CKShareTitleKey not bound !missing-field! CKShareTypeKey not bound !missing-selector! CKContainer::acceptShareMetadata:completionHandler: not bound !missing-selector! CKContainer::fetchShareMetadataWithURL:completionHandler: not bound * tvOS: enabled !missing-selector! CKNotificationInfo::setShouldSendContentAvailable: not bound !missing-selector! CKNotificationInfo::shouldSendContentAvailable not bound * watchOS: xtro fixes for additions/removal in the same release !missing-type! CKFetchRecordChangesOperation not bound !missing-type! CKDiscoverAllContactsOperation not bound !missing-type! CKDiscoverUserInfosOperation not bound !missing-type! CKDiscoveredUserInfo not bound !missing-selector! CKContainer::discoverAllContactUserInfosWithCompletionHandler: not bound !missing-selector! CKContainer::discoverUserInfoWithEmailAddress:completionHandler: not bound !missing-selector! CKContainer::discoverUserInfoWithUserRecordID:completionHandler: not bound * watchOS: missing [NoWatch] on some types !unknown-native-enum! CKQuerySubscriptionOptions bound !unknown-native-enum! CKSubscriptionOptions bound !unknown-native-enum! CKSubscriptionType bound !unknown-type! CKDatabaseSubscription bound !unknown-type! CKNotificationInfo bound !unknown-type! CKQuerySubscription bound !unknown-type! CKRecordZoneSubscription bound !unknown-type! CKSubscription bound
2016-08-10 15:57:28 +03:00
# CloudKit
## default init does not work, there's no init in base types, so it's a defacto designated initializer
!extra-designated-initializer! CKMarkNotificationsReadOperation::initWithNotificationIDsToMarkRead: is incorrectly decorated with an [DesignatedInitializer] attribute
## we offer a better managed API using another selector
!missing-selector! CKRecord::objectForKeyedSubscript: not bound
!missing-selector! CKRecord::setObject:forKeyedSubscript: not bound
2016-05-26 16:06:52 +03:00
# ModelIO
## we only export the overload that expose an NSError
!missing-selector! MDLAsset::exportAssetToURL: not bound
# UIKit
## no point in having p/invoke calls that can be implement with a type cast (byte vs nint)
!missing-pinvoke! NSTextAlignmentFromCTTextAlignment is not bound
!missing-pinvoke! NSTextAlignmentToCTTextAlignment is not bound
## this was (pre iOS10) a required member that was deprecated and made optional
!incorrect-protocol-member! UIFocusEnvironment::preferredFocusedView is OPTIONAL and should NOT be abstract