Hi, I don't know whether you can do it on Android, but on the iPhone you can send in-app emails since iPhone OS 3.0 (in-app SMS comes with 4.0). That means that with a few lines of code, you can invoke the same "send new email" dialog as the built-in mail app uses. You can pre-fill the recipient, subject and body; once sent, the email shows up in your sent folder in the mail app. You already need to have an email address when deploying to the app store anyway. A lot of apps use email for feedback, typically on the "About" page.
Once this is set up, you can decide what to do with the email - you can use an alias and forward the email to yourself and possibly some other guys, or you can have JIRA poll the email account and create an issue for you (technically, JIRA is an issue tracker, not a ticketing system, but many people use it that way). And you can change this without changing the app. So if you can do that easily on Android, I'd go for the email. If not, you may be able to have at least a "mailto:" link in your app which is probably handled by the mail app on Android. It'll throw the user out of the app, but it's better than trying to do your own JIRA integration IMHO (only a minority of your users will ever give you feedback, so don't spend too much time on this). On 23 Mai, 22:36, Fabrizio Giudici <[email protected]> wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Guys, > > reconnecting to the thread of a few days ago, about the poor set of > information that the Google Market provides, etc etc... I was thinking > that it would be straightforward add an activity to collect a simple > feedback from a user and submit it automatically to Jira. But from the > user point of view, would make it sense? I mean, maybe I'm a lazy guy, > but I don't like a lot to write by means of a mobile piece of > equipment, but around me I see many people doing it. Maybe I'm just > too old. So, do you think that the Jira thing makes sense or is it a > total waste of time? > > Thanks. > > - -- > Fabrizio Giudici - Java Architect, Project Manager > Tidalwave s.a.s. - "We make Java work. Everywhere." > java.net/blog/fabriziogiudici -www.tidalwave.it/people > [email protected] > -----BEGIN PGP SIGNATURE----- > Version: GnuPG/MacGPG2 v2.0.14 (Darwin) > Comment: Using GnuPG with Mozilla -http://enigmail.mozdev.org/ > > iEYEARECAAYFAkv5kc0ACgkQeDweFqgUGxfZeACgj3dxkItO0lGkgjFj38KYcV2A > 7nIAn0/LsMORDEyhpHExufGdbeBB5aLZ > =HFfM > -----END PGP SIGNATURE----- > > -- > You received this message because you are subscribed to the Google Groups > "The Java Posse" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group > athttp://groups.google.com/group/javaposse?hl=en. -- You received this message because you are subscribed to the Google Groups "The Java Posse" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/javaposse?hl=en.
