24 lines
421 B
TypeScript
24 lines
421 B
TypeScript
export default {
|
|
get name(): string {
|
|
return 'ExpoApplication';
|
|
},
|
|
get applicationName(): null {
|
|
return null;
|
|
},
|
|
get bundleId(): null {
|
|
return null;
|
|
},
|
|
get nativeApplicationVersion(): null {
|
|
return null;
|
|
},
|
|
get nativeBuildVersion(): null {
|
|
return null;
|
|
},
|
|
get androidId(): null {
|
|
return null;
|
|
},
|
|
async getInstallationTimeAsync(): Promise<null> {
|
|
return null;
|
|
},
|
|
};
|