I\'m trying the sample code from here. But my app is crashing.
I added logging and found out that it\'s crashing at session.flush(); so I removed that l
session.flush();
There is a problem with androidId. Instead of:
androidId
String AndroidId = Secure.getString(this.getContentResolver(), Secure.ANDROID_ID);
Use this:
String AndroidId = "dead000beef";
It Works.