Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 1 | community=true |
Roman Nurik | 9960078 | 2010-01-08 12:48:45 -0800 | [diff] [blame] | 2 | page.title=Developer Forums |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 3 | @jd:body |
| 4 | |
Dirk Dougherty | 7b229ef | 2010-03-26 17:32:26 -0700 | [diff] [blame] | 5 | <div id="qv-wrapper"> |
| 6 | <div id="qv"> |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 7 | |
Dirk Dougherty | 7b229ef | 2010-03-26 17:32:26 -0700 | [diff] [blame] | 8 | <h2>In this document</h2> |
| 9 | <ol> |
| 10 | <li><a href="#StackOverflow">Android on Stack Overflow</a></li> |
| 11 | <li><a href="#MailingLists">Mailing lists</a> |
| 12 | <ol> |
Roman Nurik | 9960078 | 2010-01-08 12:48:45 -0800 | [diff] [blame] | 13 | <li><a href="#BeforeYouPost">Before you post</a></li> |
| 14 | <li><a href="#UsingEmail">Using email with the mailing lists</a></li> |
| 15 | <li><a href="#ApplicationDeveloperLists">Application developer mailing lists</a></li> |
| 16 | </ol></li> |
| 17 | <li><a href="#MarketHelp">Android Market Help Forum</a></li> |
Dirk Dougherty | 7b229ef | 2010-03-26 17:32:26 -0700 | [diff] [blame] | 18 | </ol> |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 19 | |
Dirk Dougherty | 7b229ef | 2010-03-26 17:32:26 -0700 | [diff] [blame] | 20 | </div> |
| 21 | </div> |
| 22 | |
| 23 | <p>Welcome to the Android developers community! We're glad you're here and invite you to participate in discussions with other Android application developers on topics that interest you.</p> |
| 24 | |
Chris Peterson | c05df82 | 2010-06-25 17:32:20 -0700 | [diff] [blame] | 25 | <p>The lists on this page are primarily for discussion about Android application development. If you are seeking discussion about Android source code (not application development), then please refer to the <a href="http://source.android.com/community">Open Source Project Mailing lists</a>.</p> |
Roman Nurik | 9960078 | 2010-01-08 12:48:45 -0800 | [diff] [blame] | 26 | |
| 27 | <h2 id="StackOverflow">Stack Overflow</h2> |
| 28 | |
| 29 | <p><a href="http://stackoverflow.com">Stack Overflow</a> is a collaboratively edited question and answer site for programmers. It's a great place to ask technical questions about developing and maintaining Android applications. The site is especially useful for asking questions with definite answers, but can also be used for discussing best practices.</p> |
| 30 | |
| 31 | <p>On the site, questions and answers relating to Android use the <a href="http://stackoverflow.com/questions/tagged/android">'android' tag</a>. You can look for Android topics by adding '<code>[android]</code>' to your search query, or by visiting the tag page at:</p> |
| 32 | |
| 33 | <p style="margin-left: 2em"><a href="http://stackoverflow.com/questions/tagged/android">http://stackoverflow.com/questions/tagged/android</a></p> |
| 34 | |
| 35 | <p>If you want to ask a question on Stack Overflow, you can use <a href="http://stackoverflow.com/questions/ask">this form</a>. Before submitting the form, make sure to add the 'android' tag so that other Android developers will be able to find your question. As always, before submitting a new question, take a look at the existing topics to see whether another developer has already asked or answered the question.</p> |
| 36 | |
| 37 | <p>If you are getting started with Android development, Stack Overflow may be a great location to ask questions about general Java programming or setting up the Eclipse development environment. Simply tag your questions with the <a href="http://stackoverflow.com/questions/tagged/java">Java</a> or <a href="http://stackoverflow.com/questions/tagged/eclipse">Eclipse</a> tags in these cases.</p> |
| 38 | |
| 39 | |
| 40 | <h2 id="MailingLists">Mailing lists</h2> |
| 41 | |
| 42 | <p>There are a number of mailing lists, powered by <a href="http://groups.google.com">Google Groups</a>, available for discussing Android application development.</p> |
| 43 | |
| 44 | |
| 45 | <h3 id="BeforeYouPost">Before you post</h3> |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 46 | <p>Before writing a post, please try the following:</p> |
| 47 | |
| 48 | <ol> |
Roman Nurik | 9960078 | 2010-01-08 12:48:45 -0800 | [diff] [blame] | 49 | |
| 50 | <li>Look through the support information available in the 'More' section of this tab. You may find the answer to your question in the <a href="{@docRoot}resources/faq/commontasks.html">Common Tasks</a>, <a href="{@docRoot}resources/faq/troubleshooting.html">Troubleshooting Tips</a>, or <a href="{@docRoot}resources/faq/index.html">FAQs</a> sections.</li> |
| 51 | <li>Type in keywords of your questions in the main Android site's search bar (such as the one above). This search encompasses all previous discussions, across all groups, as well as the full contents of the site, documentation, and blogs. Chances are good that somebody has run into the same issue before.</li> |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 52 | </li> |
| 53 | </ol> |
| 54 | |
| 55 | <p>If you can't find your answer, then we encourage you to address the community. |
| 56 | As you write your post, please do the following: |
| 57 | <ol> |
Roman Nurik | 9960078 | 2010-01-08 12:48:45 -0800 | [diff] [blame] | 58 | <li><strong>Read |
Chris Peterson | c05df82 | 2010-06-25 17:32:20 -0700 | [diff] [blame] | 59 | the <a href="http://source.android.com/community/groups-charter.html">mailing list charter</a></strong> that covers the community guidelines. |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 60 | </li> |
Roman Nurik | 9960078 | 2010-01-08 12:48:45 -0800 | [diff] [blame] | 61 | <li><strong>Select the most appropriate mailing list for your question</strong>. There are several different lists for |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 62 | developers, described below.</li> |
| 63 | <li> |
Roman Nurik | 9960078 | 2010-01-08 12:48:45 -0800 | [diff] [blame] | 64 | <strong>Be very clear</strong> about your question |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 65 | in the subject -- it helps everyone, both those trying to answer your |
| 66 | question as well as those who may be looking for information in the |
| 67 | future.</li> |
Roman Nurik | 9960078 | 2010-01-08 12:48:45 -0800 | [diff] [blame] | 68 | <li><strong>Give plenty of details</strong> in your post to |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 69 | help others understand your problem. Code or log snippets, as well as |
| 70 | pointers to screenshots, may also be helpful. For a great guide to |
| 71 | phrasing your questions, read <a href="http://www.catb.org/%7Eesr/faqs/smart-questions.html">How To Ask Questions The Smart Way</a>. |
| 72 | </li> |
| 73 | </ol> |
| 74 | |
| 75 | |
Roman Nurik | 9960078 | 2010-01-08 12:48:45 -0800 | [diff] [blame] | 76 | <h3 id="UsingEmail">Using email with the mailing lists</h3> |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 77 | <p>Instead of using the <a href="http://groups.google.com/">Google Groups</a> site, you can use your email client of choice to participate in the mailing lists.</p> |
| 78 | <p>To subscribe to a group without using the Google Groups site, use the link under "subscribe via email" in the lists above.</p> |
| 79 | <p>To set up how you receive mailing list postings by email:</p> |
| 80 | |
| 81 | <ol><li>Sign into the group via the Google Groups site. For example, for the android-framework group you would visit <a href="http://groups.google.com/group/android-framework">http://groups.google.com/group/android-framework</a>.</li> |
Roman Nurik | 9960078 | 2010-01-08 12:48:45 -0800 | [diff] [blame] | 82 | <li>Click "Edit my membership" on the right side.</li> |
| 83 | <li>Under "How do you want to read this group?" select one of the email options.</li> |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 84 | </ol> |
| 85 | |
| 86 | |
Roman Nurik | 9960078 | 2010-01-08 12:48:45 -0800 | [diff] [blame] | 87 | <h3 id="ApplicationDeveloperLists">Application developer mailing lists</h3> |
| 88 | <ul> |
| 89 | <li><strong><a href="http://groups.google.com/group/android-developers">android-developers</a></strong> |
Trevor Johns | ca56ffe | 2010-08-10 11:36:56 -0700 | [diff] [blame] | 90 | (<a href="http://groups.google.com/group/android-developers/subscribe">subscribe</a>)<br> |
Roman Nurik | 9960078 | 2010-01-08 12:48:45 -0800 | [diff] [blame] | 91 | You're now an experienced Android application developer. You've grasped the basics of Android app development, you're comfortable using the SDK, now you want to move to advanced topics. Get help here with troubleshooting applications, advice on implementation, and strategies for improving your application's performance and user experience. This is the not the right place to discuss user issues (use android-discuss for that) or beginner questions with the Android SDK (use android-beginners for that). |
| 92 | </li> |
| 93 | |
| 94 | <li><strong><a href="http://groups.google.com/group/android-discuss">android-discuss</a></strong> |
Trevor Johns | ca56ffe | 2010-08-10 11:36:56 -0700 | [diff] [blame] | 95 | (<a href="http://groups.google.com/group/android-discuss/subscribe">subscribe</a>)<br> |
Roman Nurik | 9960078 | 2010-01-08 12:48:45 -0800 | [diff] [blame] | 96 | The "water cooler" of Android discussion. You can discuss just about anything Android-related here, ideas for the Android platform, announcements about your applications, discussions about Android devices, community resources... As long as your discussion is related to Android, it's on-topic here. However, if you have a discussion here that could belong on another list, you are probably not reaching all of your target audience here and may want to consider shifting to a more targeted list. |
| 97 | </li> |
| 98 | |
| 99 | <li><strong><a href="http://groups.google.com/group/android-ndk">android-ndk</a></strong> |
Trevor Johns | ca56ffe | 2010-08-10 11:36:56 -0700 | [diff] [blame] | 100 | (<a href="http://groups.google.com/group/android-ndk/subscribe">subscribe</a>)<br> |
Roman Nurik | 9960078 | 2010-01-08 12:48:45 -0800 | [diff] [blame] | 101 | A place for discussing the Android NDK and topics related to using native code in Android applications. |
| 102 | </li> |
| 103 | |
| 104 | <li><strong><a href="http://groups.google.com/group/android-security-discuss">android-security-discuss</a></strong> |
Trevor Johns | ca56ffe | 2010-08-10 11:36:56 -0700 | [diff] [blame] | 105 | (<a href="http://groups.google.com/group/android-security-discuss/subscribe">subscribe</a>)<br> |
Roman Nurik | 9960078 | 2010-01-08 12:48:45 -0800 | [diff] [blame] | 106 | A place for open discussion on secure development, emerging security concerns, and best practices for and by android developers. Please don't disclose vulnerabilities directly on this list, you'd be putting all Android users at risk. |
| 107 | </li> |
| 108 | |
| 109 | <li><strong><a href="http://groups.google.com/group/android-security-announce">android-security-announce</a></strong> |
Trevor Johns | ca56ffe | 2010-08-10 11:36:56 -0700 | [diff] [blame] | 110 | (<a href="http://groups.google.com/group/android-security-announce/subscribe">subscribe</a>)<br> |
Roman Nurik | 9960078 | 2010-01-08 12:48:45 -0800 | [diff] [blame] | 111 | A low-volume group for security-related announcements by the Android Security Team. |
| 112 | </li> |
| 113 | </ul> |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 114 | |
| 115 | |
Roman Nurik | 9960078 | 2010-01-08 12:48:45 -0800 | [diff] [blame] | 116 | <h2 id="MarketHelp">Android Market Help Forum</h2> |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 117 | |
Roman Nurik | 9960078 | 2010-01-08 12:48:45 -0800 | [diff] [blame] | 118 | <p>The <a href="http://www.google.com/support/forum/p/Android+Market">Android Market Help Forum</a> is a web-based discussion forum where you can ask questions or report issues relating to Android Market.</p> |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 119 | |
Roman Nurik | 9960078 | 2010-01-08 12:48:45 -0800 | [diff] [blame] | 120 | <p style="margin-left: 2em"><a href="http://www.google.com/support/forum/p/Android+Market">http://www.google.com/support/forum/p/Android+Market</a></p> |