expo-application
Version:
A universal module that gets native application information such as its ID, app name, and build version at runtime
21 lines (20 loc) • 363 B
text/typescript
export default {
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;
},
};