I'm building 2 applications.

The first application, on start, asks a value (for example an integer) to the second application, which may or may not be installed and may or may not be running.

I don't think shared files or preferences are the best option, because I want to provide different output when the second application is present or not.

Should I use Intents? Content provider? Anything else?

link|improve this question

feedback

2 Answers

Use Intents and Activities, if you want to retrieve a user entered value, or something that requires user interaction.

ContentProvider would also work, depending on your requirements.

link|improve this answer
The value is not entered by user. It is something like an "application cookie". – michelemarcon Jan 26 at 10:38
Then, perhaps a content provider would suit your needs. – Kumar Bibek Jan 26 at 10:47
feedback
up vote 0 down vote accepted

I solved by creating an Intent with putExtra and finish() (to return to first app). 4 lines of code on each app.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.