expo-application
Version:
A universal module that gets native application information such as its ID, app name, and build version at runtime
21 lines • 413 B
JavaScript
export default {
get applicationName() {
return null;
},
get bundleId() {
return null;
},
get nativeApplicationVersion() {
return null;
},
get nativeBuildVersion() {
return null;
},
get androidId() {
return null;
},
async getInstallationTimeAsync() {
return null;
},
};
//# sourceMappingURL=ExpoApplication.web.js.map