Tracking user counts in android app

3.1k Views Asked by At

I need to create one app where I have to show total number of users visited the app at current moment. (Something similar to web-stat in a web page where we can show "Total Visitor:1000").

As soon as any user opens up the app (across globe), he should see the Total Visitor count as of now.

Is there any solution exists for this requirement?

Appreciate any help/suggestion. Thanks

--More Info-- There is website http://www.web-stat.net/ which does it for a webpage. Need something similar for android app.

2

There are 2 best solutions below

9
On

Two examples you could read into:

http://www.flurry.com

http://www.google.com/analytics/

These both are DataReporting services which offer APIs to export your data e.g. as JSON. The main aim is that your app sends usage statistics to external servers (where the data can be viewed by you). Furthermore, you can also connect to those servers and retrieve the data back on your device.

UPDATE - LOCAL STORAGE

If you only want a local counter on the device that shows the user how often he visited the app, check out SharedPreferences. SharedPreferences enables you to store data on your device and also retrieve that data again when you open or close the app.

UPDATE - GLOBAL - DATABASE

If you want just a "global" counter. Id recommend you create an SQL Database for that where you store the current visitor count and increment it each time the user visits and receive the current count on app startup to display it. If you want to track the different users of your app that are currently using the app, you could generate an identical id for each user and store it in your SQL Database when the user first opens the app and increment the counter. For that you will of course also need a table where the ids are stored. When the user closes the app, you will need to connect to the database again and remove his id from the table and decrement the counter.

This could be a way of getting a unique ID for each user:

public class Installation {
    private static String sID = null;
    private static final String INSTALLATION = "INSTALLATION";

    public synchronized static String id(Context context) {
        if (sID == null) {  
            File installation = new File(context.getFilesDir(), INSTALLATION);
            try {
                if (!installation.exists())
                    writeInstallationFile(installation);
                sID = readInstallationFile(installation);
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
        }
        return sID;
    }

    private static String readInstallationFile(File installation) throws IOException {
        RandomAccessFile f = new RandomAccessFile(installation, "r");
        byte[] bytes = new byte[(int) f.length()];
        f.readFully(bytes);
        f.close();
        return new String(bytes);
    }

    private static void writeInstallationFile(File installation) throws IOException {
        FileOutputStream out = new FileOutputStream(installation);
        String id = UUID.randomUUID().toString();
        out.write(id.getBytes());
        out.close();
    }
}

Taken from here: Android unique id

4
On
  1. Extend the Application class.
  2. Create a web method that can increase and reduce the number of users.
  3. Use the onCreate() method to report active user (increase the number).
  4. Use the onTerminate() method to report not active user (reduce the number).
  5. Create a method for getting number of users.