mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-15 23:25:49 +01:00
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>
9 lines
236 B
Go
9 lines
236 B
Go
//go:build android
|
|
|
|
package application
|
|
|
|
func init() {
|
|
// On Android, we don't call runtime.LockOSThread()
|
|
// The Android runtime handles thread management via JNI
|
|
// and calling LockOSThread can interfere with the JNI environment
|
|
}
|