Socket
Socket
Sign inDemoInstall

cordova-plugin-buildinfo

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cordova-plugin-buildinfo

Cordova/Phonegap Build Information Plugin


Version published
Weekly downloads
1.9K
increased by2.7%
Maintainers
1
Weekly downloads
 
Created
Source

cordova-plugin-buildinfo

This plugin defines a global BuildInfo object.

BuildInfo object is available at the time the deviceready event fires.

document.addEventListener("deviceready", onDeviceReady, false);

function onDeviceReady() {
	console.log('BuildInfo.packageName=' + BuildInfo.packageName);
	console.log('BuildInfo.displayName=' + BuildInfo.displayName);
	console.log('BuildInfo.name       =' + BuildInfo.name);
	console.log('BuildInfo.version    =' + BuildInfo.version);
	console.log('BuildInfo.versionCode=' + BuildInfo.versionCode);
	console.log('BuildInfo.debug      =' + BuildInfo.debug);
	console.log('BuildInfo.buildType  =' + BuildInfo.buildType);
	console.log('BuildInfo.flavor     =' + BuildInfo.flavor);
}

Installation

cordova plugin add cordova-plugin-buildinfo

Supported Platforms

  • Android
  • iOS

Properties

  • BuildInfo.packageName
  • BuildInfo.displayName
  • BuildInfo.name
  • BuildInfo.version
  • BuildInfo.versionCode
  • BuildInfo.debug
  • BuildInfo.buildType
  • BuildInfo.flavor

BuildInfo.packageName

Get the packageName of Application ID.

PlatformValueType
AndroidPackage NameString
iOSBundle IdentifierString

BuildInfo.displayName

Get the displayName.

PlatformValueType
AndroidApplication LabelString
iOSCFBundleDisplayNameString

BuildInfo.name

Get the name.

PlatformValueType
AndroidApplication Label(equals BuildInfo.displayName)String
iOSCFBundleNameString

BuildInfo.version

Get the version.

PlatformValueType
AndroidBuildConfig.VERSION_NAMEString
iOSCFBundleShortVersionStringString

BuildInfo.versionCode

Get the version code.

PlatformValueType
AndroidBuildConfig.VERSION_CODEint
iOSCFBundleVersionstring

BuildInfo.debug

Get the debug flag.

PlatformValueType
AndroidBuildConfig.DEBUGBoolean
iOSdefined "DEBUG" is trueBoolean

BuildInfo.buildType

Android Only.

Get the build type.

PlatformValueType
AndroidBuildConfig.BUILD_TYPEString
iOSempty stringString

BuildInfo.flavor

Android Only.

Get the flavor.

PlatformValueType
AndroidBuildConfig.FLAVORString
iOSempty stringString

Keywords

FAQs

Package last updated on 23 Apr 2016

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