Counting the number of client installations

爱⌒轻易说出口 提交于 2019-12-04 15:26:34

A bit old question, but I had the same question just one year ago. I am also a shareware developer, and like you, I wanted to know the conversion rate between free installations and paying users. My software was working under MacOS and Windows so I wanted a cross-platform solution.

I ended up making my own solution. For Windows, it is a DLL that you can call from your application and send the usage data to Google Analytics (as a shareware dev, you probably already have a Google Analytics account). I chose Google Analytics as the reporting platform because it is free, so is my DLL (for the moment; I do not know in the future).

More info at: https://www.starmessagesoftware.com/softmeter/sdk-api

Sending usage data is very easy. Example:

// don't forget to pick user's consent
bool userGaveConsent = .....(pick from the app settings)....

start("MyApp", "1.0", "Free trial", "Windows edition", "UA-12345-0", userGaveConsent);

// you can send any number and combination of pageViews, screenViews, events, exceptions
sendScreenview("Main screen");
sendEvent("Registration", "User entered registration code", 1 );
sendException("Error while importing a custom file", false);

stop(void);
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!