本文整理汇总了Java中com.taobao.weex.WXEnvironment.sRemoteDebugMode方法的典型用法代码示例。如果您正苦于以下问题:Java WXEnvironment.sRemoteDebugMode方法的具体用法?Java WXEnvironment.sRemoteDebugMode怎么用?Java WXEnvironment.sRemoteDebugMode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.taobao.weex.WXEnvironment
的用法示例。
在下文中一共展示了WXEnvironment.sRemoteDebugMode方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: initDebugEnvironment
import com.taobao.weex.WXEnvironment; //导入方法依赖的package包/类
/**
* @param enable enable remote debugger. valid only if host not to be "DEBUG_SERVER_HOST".
* true, you can launch a remote debugger and inspector both.
* false, you can just launch a inspector.
* @param host the debug server host, must not be "DEBUG_SERVER_HOST", a ip address or domain will be OK.
* for example "127.0.0.1".
*/
private void initDebugEnvironment(boolean connectable,boolean enable, String host) {
if (!"DEBUG_SERVER_HOST".equals(host)) {
WXEnvironment.sDebugServerConnectable = connectable;
WXEnvironment.sRemoteDebugMode = enable;
WXEnvironment.sRemoteDebugProxyUrl = "ws://" + host + ":8088/debugProxy/native";
}
}
示例2: initDebugEnvironment
import com.taobao.weex.WXEnvironment; //导入方法依赖的package包/类
/**
* @param enable enable remote debugger. valid only if host not to be "DEBUG_SERVER_HOST".
* true, you can launch a remote debugger and inspector both.
* false, you can just launch a inspector.
* @param host the debug server host, must not be "DEBUG_SERVER_HOST", a ip address or domain will be OK.
* for example "127.0.0.1".
*/
private void initDebugEnvironment(boolean connectable,boolean enable, String host) {
if (!"DEBUG_SERVER_HOST".equals(host)) {
WXEnvironment.sDebugServerConnectable = connectable;
WXEnvironment.sRemoteDebugMode = enable;
WXEnvironment.sRemoteDebugProxyUrl = "ws://" + host + ":8088/debugProxy/native";
}
}
示例3: initDebugEnvironment
import com.taobao.weex.WXEnvironment; //导入方法依赖的package包/类
public static void initDebugEnvironment(Context context) {
if (UWXApplication.isDebug()) {
WXEnvDetailHelper instance = WXEnvDetailHelper.getInstance();
WXEnvironment.sDebugServerConnectable = WXEnvDetailHelper.getInstance().debugInChrome();
WXEnvironment.sRemoteDebugMode = WXEnvDetailHelper.getInstance().debugRemote();
WXEnvironment.sRemoteDebugProxyUrl = "ws://" + instance.getHost() + ":8088/debugProxy/native";
WXEnvironment.sLogLevel = WXEnvDetailHelper.getInstance().getLogLevel();
} else {
WXEnvironment.sDebugServerConnectable = false;
WXEnvironment.sRemoteDebugMode = false;
}
}
示例4: initDebugEnvironment
import com.taobao.weex.WXEnvironment; //导入方法依赖的package包/类
/**
*
* @param enable enable remote debugger. valid only if host not to be "DEBUG_SERVER_HOST".
* true, you can launch a remote debugger and inspector both.
* false, you can just launch a inspector.
* @param host the debug server host, must not be "DEBUG_SERVER_HOST", a ip address or domain will be OK.
* for example "127.0.0.1".
*/
private void initDebugEnvironment(boolean enable, String host) {
if (!"DEBUG_SERVER_HOST".equals(host)) {
WXEnvironment.sRemoteDebugMode = enable;
WXEnvironment.sRemoteDebugProxyUrl = "ws://" + host + ":8088/debugProxy/native";
}
}