我尝试做的是通过ARCwelder在Chromebook上运行Complete Linux Installer。该应用程序应该运行,但需要androidVNC和Android终端仿真器 - 我已经“焊接”它们运行并按预期工作。
我的问题是主应用程序class ViewController: UIViewController, UIGestureRecognizerDelegate {
override func viewDidLoad() {
super.viewDidLoad()
var swipeRight = UISwipeGestureRecognizer(target: self, action: "swiped:")
swipeRight.direction = UISwipeGestureRecognizerDirection.Right
self.view.addGestureRecognizer(swipeRight)
var swipeUp = UISwipeGestureRecognizer(target: self, action: "swiped:")
swipeUp.direction = UISwipeGestureRecognizerDirection.Up
self.view.addGestureRecognizer(swipeUp)
}
func swiped(gesture: UIGestureRecognizer) {
if let swipeGesture = gesture as? UISwipeGestureRecognizer {
switch swipeGesture.direction {
case UISwipeGestureRecognizerDirection.Right:
print("swiped right")
case UISwipeGestureRecognizerDirection.Up:
print("swiped up")
default:
break
}
}
}
在运行时不会检测终端应用程序。我知道我做错了什么,但我不确定它是什么。我开始认为Google并没有让应用程序通过Chrome进行相互通信。
Complete Linux Installer Screenshot
如果有人知道为什么会这样,无论是否有用,请告诉我。关于为Chrome焊接APK的网络上并没有太多 - 除非有一个专门讨论它的论坛,我还没有发现。此外,我已阅读29583906,但它没有确切说明如何合并这些应用。我错过了什么吗?