-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stubbed out the methods that will be needed for the various integrati…
…on validator checks Stubbed out the methods that will be needed for the various integration validator checks
- Loading branch information
1 parent
d0756dd
commit cb94bd3
Showing
3 changed files
with
79 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
export default class AndroidValidator { | ||
static checkAndroidInitialization() { | ||
//check that the native layer components initialized successfully for Android | ||
} | ||
|
||
static checkBranchKeys() { | ||
//check that the Branch keys are present in the AndroidManifest file | ||
} | ||
|
||
static checkPackageName() { | ||
//check if the package name of the app matches the one from the dashboard | ||
} | ||
|
||
static checkURIScheme() { | ||
//check if the URI scheme in the manifest matches the URI scheme in the dashboard | ||
} | ||
|
||
static checkAppLinks() { | ||
//check that app links have been configured properly | ||
} | ||
|
||
static checkCustomDomain() { | ||
//check if the custom domain has been setup and added to the manifest | ||
} | ||
|
||
static checkDefaultDomains() { | ||
//check if the default domains have been added to the manifest | ||
} | ||
|
||
static checkAltDomains() { | ||
//check if the alternate domains have been added to the manifest | ||
} | ||
} |
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,41 @@ | ||
export default class IOSValidator { | ||
|
||
static checkIOSInitialization() { | ||
//check that the native layer components initialized successfully for iOS | ||
} | ||
|
||
static checkBranchKeys() { | ||
//check that the Branch keys are present in the Info.plist file | ||
} | ||
|
||
static checkNativeLink() { | ||
//check if the copy to clipboard code for NativeLink was added | ||
} | ||
|
||
static checkDefaultDomains() { | ||
//check if the default domains were added to the Info.plist | ||
//check if the default domains were added to the Associated Domains | ||
} | ||
|
||
static checkAltDomains() { | ||
//check if the alt domains were added to the Info.plist | ||
//check if the alt domains were added to the Associated Domains | ||
} | ||
|
||
static checkURIScheme() { | ||
//check if the URI scheme was added to the Info.plist | ||
//check if the URI scheme matches the URI scheme on the Branch dashboard | ||
} | ||
|
||
static checkBundleID() { | ||
//check if the bundle ID matches the bundle ID on the dashboard | ||
} | ||
|
||
static checkTeamID() { | ||
//check if the team ID matches the team ID on the dashboard | ||
} | ||
|
||
static checkIfIDFAIsAccessible() { | ||
//check if the user has allowed tracking with the ATT prompt | ||
} | ||
} |
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