[android] Statistics review fixes

This commit is contained in:
Alex Zolotarev 2015-02-24 12:30:14 +03:00
parent efac4023df
commit 57872f6b24
2 changed files with 4 additions and 4 deletions

View file

@ -73,10 +73,11 @@ public class Statistics {
}
final SharedPreferences prefs = context.getSharedPreferences(PREF_FILE, Context.MODE_PRIVATE);
Location lastKnownLocation = null;
if (SystemInfo.hasPermission("android.permission.ACCESS_FINE_LOCATION", context)) {
if (SystemInfo.hasPermission(android.Manifest.permission.ACCESS_FINE_LOCATION, context)) {
// Requires ACCESS_FINE_LOCATION permission.
final LocationManager lm = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);
lastKnownLocation = (lm == null) ? null : lm.getLastKnownLocation(LocationManager.PASSIVE_PROVIDER);
if (lm != null)
lastKnownLocation = lm.getLastKnownLocation(LocationManager.PASSIVE_PROVIDER);
}
// Is it a real new install?
if (id.second && installTime == updateTime) {
@ -95,7 +96,7 @@ public class Statistics {
SystemInfo.getDeviceInfoAsync(context);
prefs.edit().putLong(PREF_APP_UPDATE_TIME, updateTime).apply();
}
logEvent("$launch", SystemInfo.hasPermission("android.permission.ACCESS_NETWORK_STATE", context)
logEvent("$launch", SystemInfo.hasPermission(android.Manifest.permission.ACCESS_NETWORK_STATE, context)
? SystemInfo.getConnectionInfo(context) : null, lastKnownLocation);
}

View file

@ -258,7 +258,6 @@ public class MWMApplication extends android.app.Application implements ActiveCou
PreferenceManager.setDefaultValues(this, R.xml.preferences, false);
org.alohalytics.Statistics.setDebugMode(BuildConfig.DEBUG);
// We try to take into an account if app was previously installed.
org.alohalytics.Statistics.setup(BuildConfig.STATISTICS_URL, this);
}
}