Hello Guys,

I have to integrate Apsalar in my android Application. i am successfully
integrate it. but problem is that  , i want to check my all activity where
user is coming . i have to keep a track that which activity user is using
more. How i will manage all the records using Apsalar. In Apsalar
 Dashboard, its showing count of activity  uses by user but its not showing
device name and device platform. I am unable to find attributes too.

*My code in Apsalar is :*
In oncreate M using this code: Apsalar.startSession(this, "Apsalar id ",
"secretKey");

*In on click listener of button m using this code*

Log.d("##########################",
"Apsalar video song name is calling");
try {
 JSONArray contents = new JSONArray();
JSONObject item1 = new JSONObject();

item1.put("songname", name);
item1.put("albumname", videos.get(x)
.getAlbum());
item1.put("content_id", videos.get(x)
.getContentId());
contents.put(item1);
Apsalar.event("Videoe", "contents",
contents);
JSONObject args = new JSONObject();
args.put("contents", contents);
Apsalar.eventJSON("videocart", args);

} catch (JSONException e) {
android.util.Log.e("Now",
"JSON Exception in cart");
}




Kindly suggest me where i am lacking.
Thanks in Advance
Gaurav Gupta
Android Developer

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to