- Updated wails3 CLI to v3.0.0-alpha.74 - Added build/ios/, build/android/, build/docker/ from new template - Updated all platform Taskfiles (darwin, linux, windows) - Fixed Angular versions to ~20.3.16 - Root Taskfile with platform-aware build/package/run - Binary compiles and runs — system tray appears on macOS Co-Authored-By: Virgil <virgil@lethean.io>
11 lines
306 B
Go
11 lines
306 B
Go
//go:build android
|
|
|
|
package main
|
|
|
|
import "github.com/wailsapp/wails/v3/pkg/application"
|
|
|
|
func init() {
|
|
// Register main function to be called when the Android app initializes
|
|
// This is necessary because in c-shared build mode, main() is not automatically called
|
|
application.RegisterAndroidMain(main)
|
|
}
|