Asith Raj
Asith Raj

Reputation: 63

How to know total number of installations of my android application?

I want to know total number of installations of my android application, I can see the total download, if the application was installed through Playstore but I want to know the total installs including transferred through Shareit, Xender or other applications...

Upvotes: 0

Views: 2556

Answers (4)

Tulsi
Tulsi

Reputation: 719

I would recommend you to use Fabric developed by twitter. It is very fast and very easy to integrate.

Upvotes: 0

Himanshu Mori
Himanshu Mori

Reputation: 873

i use easy way to detect my app installations and many more details..

https://developer.yahoo.com/flurry/docs/analytics/gettingstarted/android/

flurry analytics gives you all the desired details faster then Google Playstore.

and output sample :

enter image description here

Upvotes: 1

onkar
onkar

Reputation: 4547

Unfortunately there is no such API present, instead you should write your own custom API that will transmit the details to your server from your api, for android you can get IMEI of device will be unique.

More so, if you have Push notifications integrated in your app, you can api count that will transmit the time when the app has been opened, that log will give you count of active users of the app which will be precise count of the users using your app, since in first approach you will get lifetime count, not the active count

Upvotes: 0

Teo Mihaila
Teo Mihaila

Reputation: 134

You should place a code than will increase a counter everytime your app was installed and used for the first time. For this you will need a server and a database that will keep this info registred. If you want I will provide this code for you.

Upvotes: 0

Related Questions