diff --git a/cmd/gogio/androidbuild.go b/cmd/gogio/androidbuild.go index ecf738d9..7f14a0a5 100644 --- a/cmd/gogio/androidbuild.go +++ b/cmd/gogio/androidbuild.go @@ -273,6 +273,8 @@ func archiveAndroid(tmpDir string, bi *buildInfo, perms []string) (err error) { themesXML21 := aarw.Create("res/values-v21/themes.xml") themesXML21.Write([]byte(themesV21)) permissions, features := getPermissions(perms) + // Disable input emulation on ChromeOS. + features = append(features, "android.hardware.type.pc") manifest := aarw.Create("AndroidManifest.xml") manifestSrc := manifestData{ AppID: bi.appID,