| | |
| | | typedef NS_ENUM(NSUInteger, FBSDKFeature) { |
| | | FBSDKFeatureNone = 0x00000000, |
| | | // Features in CoreKit |
| | | /** Essential of CoreKit */ |
| | | /// Essential of CoreKit |
| | | FBSDKFeatureCore = 0x01000000, |
| | | /** App Events */ |
| | | /// App Events |
| | | FBSDKFeatureAppEvents = 0x01010000, |
| | | FBSDKFeatureCodelessEvents = 0x01010100, |
| | | FBSDKFeatureRestrictiveDataFiltering = 0x01010200, |
| | |
| | | FBSDKFeatureSKAdNetworkConversionValue = 0x01010601, |
| | | FBSDKFeatureATELogging = 0x01010700, |
| | | FBSDKFeatureAEM = 0x01010800, |
| | | FBSDKFeatureAEMCatalogReport = 0x01010801, |
| | | /** Instrument */ |
| | | FBSDKFeatureAEMConversionFiltering = 0x01010801, |
| | | FBSDKFeatureAEMCatalogMatching = 0x01010802, |
| | | FBSDKFeatureAEMAdvertiserRuleMatchInServer = 0x01010803, |
| | | FBSDKFeatureAEMAutoSetup = 0x01010804, |
| | | FBSDKFeatureAppEventsCloudbridge = 0x01010900, |
| | | /// Instrument |
| | | FBSDKFeatureInstrument = 0x01020000, |
| | | FBSDKFeatureCrashReport = 0x01020100, |
| | | FBSDKFeatureCrashShield = 0x01020101, |
| | | FBSDKFeatureErrorReport = 0x01020200, |
| | | |
| | | // Features in LoginKit |
| | | /** Essential of LoginKit */ |
| | | /// Essential of LoginKit |
| | | FBSDKFeatureLogin = 0x02000000, |
| | | |
| | | // Features in ShareKit |
| | | /** Essential of ShareKit */ |
| | | /// Essential of ShareKit |
| | | FBSDKFeatureShare = 0x03000000, |
| | | |
| | | // Features in GamingServicesKit |
| | | /** Essential of GamingServicesKit */ |
| | | /// Essential of GamingServicesKit |
| | | FBSDKFeatureGamingServices = 0x04000000, |
| | | } NS_SWIFT_NAME(SDKFeature); |
| | | |