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

I've made an Android application that is available on Google Play. Now I want to add some more formatting to my app description (eg. indent, links, lists..). But I cannot find any website were possible formatting is listed. Google Help pages cannot help me either on this subject. There exist a lot of different formats and I don't really know which one to use (eg. HTML or wiki formatting..)

I could test it with trial and error, but that would take some time because Google Play only refreshes after 2-3 hours. And while I'm testing my app description would be rather ugly if the wrong format was used.

tl;dr Is there a list of all possible formatting I could use in the app description for Google Play?

share|improve this question

2 Answers

up vote 18 down vote accepted

Here is a short list of HTML tags that should work

http://appendixk.thejameskearney.me/2011/09/android-market-app-description-markup.html

share|improve this answer

As a matter of fact, HTML character entites also work : http://www.w3.org/TR/html4/sgml/entities.html.

It lets you insert special characters like bullets '•' (•), '™' (™), ... the HTML way.

Note that you can also (and probably should) type special characters directly in the form fields if you can enter international characters.

=> one consideration here is whether or not you care about third-party sites that collect data on your app from Google Play : some might simply take it as HTML content, others might insert it in a native application that just understand plain Unicode...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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