-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lay foundation for passing operational parameters
Summary: This diff lays the foundation for passing operational parameters. Reviewed By: jjiang10 Differential Revision: D66025393 Privacy Context Container: L1285343 fbshipit-source-id: 099ca70dfff5ce4f6204779a8032d3e944f394ce
- Loading branch information
1 parent
52e5f3f
commit 54b34d5
Showing
7 changed files
with
50 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
FBSDKCoreKit/FBSDKCoreKit/AppEvents/FBSDKAppOperationalDataType.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* All rights reserved. | ||
* | ||
* This source code is licensed under the license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
#import "FBSDKAppOperationalDataType.h" | ||
|
||
FBSDKAppOperationalDataType const FBSDKAppOperationalDataTypeIAPParameters = @"iap_parameters"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
FBSDKCoreKit/FBSDKCoreKit/include/FBSDKAppOperationalDataType.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* All rights reserved. | ||
* | ||
* This source code is licensed under the license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
/** | ||
Internal Type exposed to facilitate transition to Swift. | ||
API Subject to change or removal without warning. Do not use. | ||
@warning INTERNAL - DO NOT USE | ||
*/ | ||
|
||
typedef NSString *FBSDKAppOperationalDataType NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(AppOperationalDataType); | ||
|
||
FOUNDATION_EXPORT FBSDKAppOperationalDataType const FBSDKAppOperationalDataTypeIAPParameters; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters