wails/v3/pkg/application/init_ios.go
Lea Anthony db8f1f3d41 chore: remove temporary debug print statements from mobile merge
Remove emoji debug logs (🔴, 🟢, 🟠, 🔵, 🔥) that were accidentally left in
from the iOS/Android mobile platform support merge. These were development
debugging statements that should not have been included in the final code.

Files cleaned:
- application.go
- application_debug.go
- init_android.go
- init_ios.go
- mainthread_android.go
- mainthread_ios.go
- webview_window.go
- webview_window_ios.go

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-12 06:26:23 +11:00

9 lines
224 B
Go

//go:build ios
package application
func init() {
// On iOS, we don't call runtime.LockOSThread()
// The iOS runtime handles thread management differently
// and calling LockOSThread can interfere with signal handling
}