henry
henry

Reputation: 1718

How to persist data in a broadcast receiver

I have a simple broadcast receiver which receives some data which I would like to store for the application to use on next launch. It is just a few strings so simplicity is the goal. Normally I'd just write to to a file or sharedPreferences but not being an activity that seems incorrect.

Thoughts?

-- Henry

Upvotes: 0

Views: 647

Answers (1)

Jeremy Edwards
Jeremy Edwards

Reputation: 14750

Saving into SharedPreferences is perfectly fine. You have a Context to access it from as it is passed into the BroadcastReceiver.

Upvotes: 2

Related Questions