### Initialize gomobile Source: https://github.com/2dust/androidlibxraylite/blob/main/README.md Initializes gomobile for the project. This is a prerequisite for binding Go code to Android. ```bash gomobile init ``` -------------------------------- ### Tidy Go Modules Source: https://github.com/2dust/androidlibxraylite/blob/main/README.md Ensures all Go module dependencies are downloaded and updated. Run this before binding. ```bash go mod tidy -v ``` -------------------------------- ### Bind Go to Android Source: https://github.com/2dust/androidlibxraylite/blob/main/README.md Binds the Go code in the current directory to an Android library. Sets the minimum API level to 21 and applies linker flags for smaller binary size. ```bash gomobile bind -v -androidapi 21 -ldflags='-s -w' ./ ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.