Changes between Version 28 and Version 29 of Docs/825gen2/Dev/825Gen2ProjectReference


Ignore:
Timestamp:
02/16/26 11:17:56 (8 days ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/825gen2/Dev/825Gen2ProjectReference

    v28 v29  
    166166//This will create the app signature file for distribution. Be sure to have a signature configuration provided by Cardinal for your organization installed in your development VM.//
    167167
     168== Installation Package ==
     169
     170In the //app// directory of the project it is helpful to create a script "mktgz.sh" to generate a release package to give to customers to install the app.
     171{{{
     172#!/bin/sh
     173# Create tgz archive for app distribution
     174# Archive will contains app executable, signature file, and may have a bmp file
     175# to show on the application menu button.
     176# The menu icon must be saved as a 24-bit bmp. The width should be an even 4 pixels
     177# such as 280 x 180
     178# Additional files may be added. Documentation files (pdf format) will be available
     179# in new style apps to view on the indicator in chromium from help/about screen.
     180tar -czvf <projectname>.tgz <projectname> <projectname>.8sg <projectname>.bmp <projectname>.ver <documentfilename>.pdf
     181}}}
     182
     183From a terminal window in the VM in the //app// directory type "./mktgz.sh" to create the compressed tgz file containing the application files. This file can be copied to a USB flash drive. From the 825 Gen2 file manager the app can be installed from the flash drive.
     184
    168185== See Also ==
    169186