You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
extraTemplateDatafunc(packageName, pathstring) map[string]string// Update the template data on build. This is used for inserting values that are generated on init
67
-
flutterBuildOutputDirectorystring// Path to copy the build output of the app to. Operates in the temporary directory
68
-
packagingFunctionfunc(tmpPath, applicationName, strippedApplicationName, packageName, executableName, version, releasestring) (string, error) // Function that actually packages the app. Needs to check for OS specific tools etc. . Returns the path of the packaged file
69
-
skipAssertInitializedbool// Set to true when a task doesn't need to be initialized.
70
-
requiredToolsmap[string][]string// Map of list of tools required to package per OS
57
+
packagingFormatNamestring// Name of the packaging format: OS-TYPE
58
+
dependsOnmap[*packagingTask]string// Packaging tasks this task depends on
59
+
templateFilesmap[string]string// Template files to copy over on init
60
+
executableFiles []string// Files that should be executable
61
+
linuxDesktopFileExecutablePathstring// Path of the executable for linux .desktop file (only set on linux)
62
+
linuxDesktopFileIconPathstring// Path of the icon for linux .desktop file (only set on linux)
63
+
generateBuildFilesfunc(packageName, pathstring) // Generate dynamic build files. Operates in the temporary directory
extraTemplateDatafunc(packageName, pathstring) map[string]string// Update the template data on build. This is used for inserting values that are generated on init
66
+
flutterBuildOutputDirectorystring// Path to copy the build output of the app to. Operates in the temporary directory
67
+
packagingFunctionfunc(tmpPath, applicationName, packageName, executableName, version, releasestring) (string, error) // Function that actually packages the app. Needs to check for OS specific tools etc. . Returns the path of the packaged file
68
+
skipAssertInitializedbool// Set to true when a task doesn't need to be initialized.
69
+
requiredToolsmap[string][]string// Map of list of tools required to package per OS
log.Infof("go/packaging/%s has been created. You can modify the configuration files and add it to git.", t.packagingFormatName)
180
124
log.Infof(fmt.Sprintf("You now can package the %s using `%s`", strings.Split(t.packagingFormatName, "-")[0], log.Au().Magenta("hover build "+t.packagingFormatName)))
0 commit comments