I\'d like to maintain a hash table in a broadcast receiver. If I understand BroadcastReceiver\'s life cycle currently it could get killed wiping out my member variables. Wh
Your best strategy would be to use a database to store your data in a table instead of any type of in memory Map.
That way it wouldn't matter if the user turned off and then turned the phone back on again, your data from previous calls would still be available.