Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Other than asking a smartphone user to go to a webpage or download an app, is there any other way to inform them about existing of an app?

Like a push notification without having an app installed. Or something like the network notification when enter an area.

I know that it is highly improbable but any suggestions on how to notify people on existing of an app/web app would be appreciated.

share|improve this question
If it were impossible, we couldn't help you - let alone highly impossible ;-p – AedonEtLIRA Jul 6 '12 at 15:22
Also, I just finally registered this. What will work in Android WILL NOT! NOT! NOT! NOT! Work for iPhone. They are different in ways that only a monkey can tell you, particularly, OS, programming language, design implementations, coding styles, hardware specifications, target audience and designing / maintaining companies. – AedonEtLIRA Jul 6 '12 at 15:24
Maybe I didn't state my question really well. I am looking for any possible ways to notify users of an existing app (for now it doesn't matter on what OS). There is no app installed I just what them to know about the app when connecting to a local network – Nasim Jul 6 '12 at 15:37

closed as not a real question by Will Harris, joran, Luksprog, Sergey Glotov, Mehul Dec 24 '12 at 7:37

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

In short, there is.

However, I would not implement my app in that particular fashion. Instead, I would send a broadcast intent for what I need done. If the broadcast fails launch, then I would post a dialog activity to the user and say that feature is not currently installed, but it could be if you installed it from here [goooooooooogle]. That would be the android way of doing things, unless I fell on my head as a child (stupid swings...).

share|improve this answer
Thanks for answering but I am not talking about features. There is no app installed I just want to let them know that the app existed. Currently I don't care about the OS. I am just researching the options. – Nasim Jul 6 '12 at 15:39

I think what he means is the following: Some guy connects to his wifi network (maybe in a restaurant) and he wants to notify his guests connected to the wifi network that the restaurant has an app.

I don't think that's possible and if it was, it's probably illegal.

share|improve this answer
Yes. I found an alternative. As soon as they open a webpage to use internet connection we lead them to a webpage that contains the link to our app. I wonder if there is any other way to do so. – Nasim Jul 6 '12 at 19:00

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