When I launch my application from Titanium Developer, I can see the following in debug window:
[06:56:49:851] [Titanium.Network.HTTPClient] [Debug] Changing readyState from 1 to 2 for url:https://api.appcelerator.net/p/v1/app-track [06:56:49:851] [Titanium.Network.HTTPClient] [Debug] Changing readyState from 2 to 3 for url:https://api.appcelerator.net/p/v1/app-track [06:56:49:851] [Titanium.Network.HTTPClient] [Debug] Changing readyState from 3 to 4 for url:https://api.appcelerator.net/p/v1/app-trackDoes it try to track my application? If yes, I would like to disable it. Is there a way?
(I've searched google and this q&a - no result)
3 Answers
Forgot to mention: Titanium Developer 1.0, Desktop SDK 1.0.0, Windows XP
P.S. How can I edit my question?..
You can set the value of analytics in tiapp.xml to false.
One little thing: tiapp.xml doesn't have analytics tag by default, so I had to add the following top-level tag to my tiapp.xml:
<analytics>false</analytics>(just found this in the tiapp.xml doc)
Your Answer
Think you can help? Login to answer this question!