diff --git a/src/BasePlatform.js b/src/BasePlatform.js index 6eed22f436..f7be7c5652 100644 --- a/src/BasePlatform.js +++ b/src/BasePlatform.js @@ -29,6 +29,11 @@ export default class BasePlatform { this.errorDidOccur = false; } + // Used primarily for Analytics + getHumanReadableName() { + return 'Base Platform'; + } + setNotificationCount(count: number) { this.notificationCount = count; }