Android App

/app/util/mobile.go (148 B)

1
2
3
4
5
6
7
8
//go:build android
package util

import (
_ "golang.org/x/mobile/geom" // This file is only used to keep mobile from being evicted.
)

func _() {}