Skip to content

Files

32 lines (26 loc) · 1.99 KB

resources-generate-splashes.md

File metadata and controls

32 lines (26 loc) · 1.99 KB

<% if (isJekyll) { %>--- title: tns resources generate splashes position: 12 ---<% } %>

tns resources generate splashes

Usage Synopsis
$ tns resources generate splashes <Path to image> [--background <Color>] Generate all splashscreens for Android and iOS based on the specified image.

Generates all splashscreens for Android and iOS platforms and places the generated images in the correct directories under App_Resources/<platform> directory.

Options

  • --background Sets the background color of the splashscreen. Defaults to white in case it is not specified.

Attributes

  • <Path to image> is a valid path to an image that will be used to generate all splashscreens.
  • <Color> is a valid color. It can be represented with string, like white, black, blue, etc. or its HEX representation, for example #FFFFFF, #000000, #0000FF. NOTE: As the # is special symbol in some terminals, make sure to place the value in quotes, for example $ tns resources generate splashes ../myImage.png --background "#FF00FF".

<% if(isHtml) { %>

Related Commands

Command Description
install Installs all platforms and dependencies described in the package.json file in the current directory.
platform add Configures the current project to target the selected platform.
platform remove Removes the selected platform from the platforms that the project currently targets.
platform Lists all platforms that the project currently targets.
prepare Copies common and relevant platform-specific content from the app directory to the subdirectory for the selected target platform in the platforms directory.
resources update Updates the App_Resources/Android internal folder structure to conform to that of an Android Studio project.
resources generate icons Generates icons for Android and iOS.
<% } %>