Appcelerator:将WebView远程连接到Chrome

时间:2017-11-28 08:28:16

标签: appcelerator appcelerator-titanium appcelerator-mobile appcelerator-alloy appcelerator-studio

前段时间我能够在Chrome中远程调试webview来调试html错误。但是现在,它已不能在我的Android手机上工作,我无法连接(在Chrome中:更多工具>开发人员工具>远程设备......我的远程设备所在的位置&# 34;连接"

我添加的行(组成不同)到tiapp.xml:

  

< property name =" appc-security-debugger-detect"> false< /性>
      <应用程序android:debuggable =" true" />
      < disable_error_screen>真< / disable_error_screen>

1 个答案:

答案 0 :(得分:1)

解决了这个问题。 在tiapp.xml中,这两个元素需要按以下顺序排列:

<application android:theme="@style/Theme.AppCompat.NoTitleBar"/>
<application android:debuggable="true"/>

...而不是:

<application android:debuggable="true"/>
<application android:theme="@style/Theme.AppCompat.NoTitleBar"/>

......对我来说看起来像个错误。