mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
15 lines
173 B
Go
15 lines
173 B
Go
|
// +build android
|
||
|
|
||
|
package main
|
||
|
|
||
|
import "C" // Required for export support
|
||
|
|
||
|
//export AndroidMain
|
||
|
func AndroidMain() {
|
||
|
myRealMainFunc()
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
// Must be empty
|
||
|
}
|