cmd/gogio: [Android] disable ChromeOS input emulation

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2020-06-19 20:07:44 +02:00
parent b9f6543cf5
commit e2f3bbdfc3
+2
View File
@@ -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,