I'm reading out several values using the BatteryManager
including voltage
int volt = intent.getIntExtra(BatteryManager.EXTRA_VOLTAGE, -1);
The problem is, that some devices return mV and others V (e.g. 5122 and 5).
Question: Is there a way to retrieve the order of magnitude or do I have to implement manual plausibility checks?
thanks