1export default { 2 get name(): string { 3 return 'ExpoApplication'; 4 }, 5 get applicationName(): null { 6 return null; 7 }, 8 get bundleId(): null { 9 return null; 10 }, 11 get nativeApplicationVersion(): null { 12 return null; 13 }, 14 get nativeBuildVersion(): null { 15 return null; 16 }, 17 get androidId(): null { 18 return null; 19 }, 20 async getInstallationTimeAsync(): Promise<null> { 21 return null; 22 }, 23}; 24