Cordova Telemetry, what is it and why use it?

后端 未结 5 1817
暗喜
暗喜 2020-12-14 05:47

started a project with plain Cordova. This message keeps turning up:

You have been opted out of telemetry. To change this, run: cordova telemetry on.


        
相关标签:
5条回答
  • 2020-12-14 05:52

    Cordova telemetry is a part of the cordova cli and collects data about your usage of it. From the Apache Cordova CLI Privacy Policy:

    • IP address
    • OS type and version
    • Node version
    • Cordova version
    • Commands executed, time of execution and status (success/failure)

    You can turn on/off from the cordova cli (cli reference) by:

    cordova telemetry on
    cordova telemetry off
    
    0 讨论(0)
  • 2020-12-14 05:52

    It will collects the user information related system and cordova you can remove this by using

    cordova telemetry on
    

    Thank You

    0 讨论(0)
  • 2020-12-14 05:59

    cordova telemetry collects developer data of the usage of cordova for the cordova dev-team. The data is shown here:

    https://datastudio.google.com/#/org//reporting/0B-Ja5cNOX_XLTElHdWd4V2NUem8/page/xEE

    It is NOT collecting user data, just developer data, like which version of cordova you are using.

    0 讨论(0)
  • 2020-12-14 06:09

    It's all about the tool which anonymously report usage statistics to improve your application over time. You can simply turn it on by typing

    cordova telemetry on
    

    from the Cordova-cli. Thank you!

    0 讨论(0)
  • 2020-12-14 06:13

    In the Capacitor CLI run the caommand

    npx cordova telemetry on
    
    0 讨论(0)
提交回复
热议问题