当我从TideSDK Developer启动我的应用程序时,我可以看到应用程序连接到appcelerator服务器(https://api.appcelerator.net/p/v1/app-track)并跟踪应用程序的使用情况。
如何禁用此跟踪?我试图在tiapp.xml中设置一个新条目而没有任何影响:
<analytics>false</analytics>
系统:
感谢您的任何想法。
问候
-
答案 0 :(得分:0)
找到了答案:
<analytics>false</analytics>
错误地进入了窗口区。当它位于窗口块外的ti:app-block
时,它会运行<?xml version='1.0' encoding='UTF-8'?>
<ti:app xmlns:ti='http://ti.appcelerator.org'>
<!-- These values are edited/maintained by TideSDK Developer -->
<id>myID</id>
<name>myAppName</name>
<version>1.0</version>
<publisher>me</publisher>
<url>no-site</url>
<icon>default_app_logo.png</icon>
<copyright>2015...</copyright>
<analytics>false</analytics>
<!-- Window Definition - these values can be edited -->
<window>
<id>initial</id>
<title>myTitle</title>
<url>app://index.html</url>
<width>800</width>
<max-width>3000</max-width>
<min-width>0</min-width>
<height>600</height>
<max-height>3000</max-height>
<min-height>0</min-height>
<fullscreen>false</fullscreen>
<resizable>true</resizable>
<chrome scrollbars="true">true</chrome>
<maximizable>true</maximizable>
<minimizable>true</minimizable>
<closeable>true</closeable>
</window>
</ti:app>