Skip to content

Latest commit

 

History

History
37 lines (22 loc) · 886 Bytes

README.md

File metadata and controls

37 lines (22 loc) · 886 Bytes

react-native-version-number

Returns the CFBundleShortVersionString and the CFBundleVersion and bundleIdentifier on IOS. For Android, returns the versionName and versionCode.

iOS Android Example
appVersion CFBundleShortVersionString versionName 1.0.2
buildVersion CFBundleVersion versionCode 42
bundleIdentifier bundleIdentifier com.foo.bar.MyApp

Getting started

Install the package

$ yarn add react-native-version-number

Link

$ react-native link

Usage

import VersionNumber from 'react-native-version-number';

console.log(VersionNumber.appVersion);
console.log(VersionNumber.buildVersion);

console.log(VersionNumber.bundleIdentifier); // iOS only

License

MIT.