forked from go-flutter-desktop/go-flutter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild-constant.go
More file actions
19 lines (18 loc) · 776 Bytes
/
build-constant.go
File metadata and controls
19 lines (18 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package flutter
// Compile configuration constants persistent across all flutter.Application.
// The values of config(option.go) can change between flutter.Run calls, those
// values contains informations that needs to be access globally, without
// requiring an flutter.Application.
//
// Values overwritten by hover during the 'Compiling 'go-flutter' and
// plugins' phase.
var (
// ProjectVersion contains the version of the build
ProjectVersion = "unknown"
// ProjectVersion contains the version of the go-flutter been used
PlatformVersion = "unknown"
// ProjectName contains the application name
ProjectName = "unknown"
// ProjectOrganizationName contains the package org name, (Can by set upon flutter create (--org flag))
ProjectOrganizationName = "unknown"
)