Skip to content

Latest commit

 

History

History
64 lines (40 loc) · 1.01 KB

File metadata and controls

64 lines (40 loc) · 1.01 KB

Release Build Guide

Version: 1.1.0+2
Supported Platforms: Android, Linux, macOS, Windows

Prerequisites

  • Flutter SDK 3.38.5+ (Dart 3.10.4+)
  • Platform-specific toolchains (see platform setup guides)
  • Release signing keys (Android only)

Android

flutter build apk --debug

Output: build/app/outputs/flutter-apk/app-debug.apk

Linux

flutter build linux --release

Output: build/linux/x64/release/bundle/

macOS

Debug Build

flutter build macos --debug

Output: build/macos/Build/Products/Debug/sleepy_ui.app

Release Build

flutter build macos --release

Output: build/macos/Build/Products/Release/sleepy_ui.app

Windows

Debug Build

flutter build windows --debug

Output: build\windows\x64\runner\Debug\sleepy_ui.exe

Release Build

flutter build windows --release

Output: build\windows\x64\runner\Release\sleepy_ui.exe

Distribution: Copy entire Release folder to target machine.