Socket
Socket
Sign inDemoInstall

expo-application

Package Overview
Dependencies
Maintainers
34
Versions
75
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

expo-application

A universal module that gets native application information such as its ID, app name, and build version at runtime


Version published
Maintainers
34
Created

What is expo-application?

The expo-application package provides access to system and application information for an Expo app. This includes details such as the app's name, version, build number, and more.

What are expo-application's main functionalities?

Get Application Name

This feature allows you to retrieve the name of the application.

import * as Application from 'expo-application';

console.log(Application.applicationName);

Get Application Version

This feature allows you to get the version of the application.

import * as Application from 'expo-application';

console.log(Application.nativeApplicationVersion);

Get Build Number

This feature allows you to retrieve the build number of the application.

import * as Application from 'expo-application';

console.log(Application.nativeBuildVersion);

Get Installation Time

This feature allows you to get the installation time of the application.

import * as Application from 'expo-application';

Application.getInstallationTimeAsync().then(time => console.log(time));

Get Application ID

This feature allows you to retrieve the application ID.

import * as Application from 'expo-application';

console.log(Application.applicationId);

Other packages similar to expo-application

Keywords

FAQs

Package last updated on 19 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc