This commit is contained in:
vshcherb 2014-05-25 12:48:22 +02:00
parent c1bca903e8
commit 5245a1f90d

View file

@ -114,10 +114,13 @@ public class OsMoService implements OsMoSender, OsMoReactor {
try { try {
// Add your data // Add your data
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2); List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("android_id", Secure.ANDROID_ID)); nameValuePairs.add(new BasicNameValuePair("android_id",
Secure.getString(app.getContentResolver(),
Secure.ANDROID_ID)));
nameValuePairs.add(new BasicNameValuePair("android_model", Build.MODEL)); nameValuePairs.add(new BasicNameValuePair("android_model", Build.MODEL));
nameValuePairs.add(new BasicNameValuePair("imei", "0")); nameValuePairs.add(new BasicNameValuePair("imei", "0"));
nameValuePairs.add(new BasicNameValuePair("android_product", Build.PRODUCT)); nameValuePairs.add(new BasicNameValuePair("android_product", Build.PRODUCT));
nameValuePairs.add(new BasicNameValuePair("client", Version.getFullVersion(app)));
nameValuePairs.add(new BasicNameValuePair("osmand", Version.getFullVersion(app))); nameValuePairs.add(new BasicNameValuePair("osmand", Version.getFullVersion(app)));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs)); httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));