Go port of "Inovation 2007" by Omega
Original Work
http://o-mega.sakura.ne.jp/product/ino.html
Releases
Web Browsers
http://hajimehoshi.github.io/go-inovation/
Android

iOS

How to install and run on desktops
go get github.com/hajimehoshi/go-inovation
cd $GOPATH/src/github.com/hajimehoshi/go-inovation
go run main.go
How to build for Android
At this directory, run
gomobile bind -target android -javapkg com.hajimehoshi.goinovation -o ./mobile/android/inovation/inovation.aar github.com/hajimehoshi/go-inovation/mobile
and run the Android Studio project in ./mobile/android
.
GO111MODULE=off
might be required.
gomobile bind -target android -javapkg com.github.moohoorama.g201905181600 -o ./mobile/android/inovation/inovation.aar github.com/moohoorama/g201905181600/mobile
How to build for iOS
At this directory, run
gomobile bind -target ios -o ./mobile/ios/Mobile.framework github.com/hajimehoshi/go-inovation/mobile
and run the Xcode project in ./mobile/ios
.
GO111MODULE=off
might be required.