• <tfoot id='BGn9p'></tfoot>

    <i id='BGn9p'><tr id='BGn9p'><dt id='BGn9p'><q id='BGn9p'><span id='BGn9p'><b id='BGn9p'><form id='BGn9p'><ins id='BGn9p'></ins><ul id='BGn9p'></ul><sub id='BGn9p'></sub></form><legend id='BGn9p'></legend><bdo id='BGn9p'><pre id='BGn9p'><center id='BGn9p'></center></pre></bdo></b><th id='BGn9p'></th></span></q></dt></tr></i><div id='BGn9p'><tfoot id='BGn9p'></tfoot><dl id='BGn9p'><fieldset id='BGn9p'></fieldset></dl></div>
      <bdo id='BGn9p'></bdo><ul id='BGn9p'></ul>
  • <small id='BGn9p'></small><noframes id='BGn9p'>

    1. <legend id='BGn9p'><style id='BGn9p'><dir id='BGn9p'><q id='BGn9p'></q></dir></style></legend>
      1. “待办事项"在将 Android 应用程序发布到市场之前列出

        quot;To Doquot; list before publishing Android app to market(“待办事项在将 Android 应用程序发布到市场之前列出)

            <bdo id='f9y6s'></bdo><ul id='f9y6s'></ul>

          • <tfoot id='f9y6s'></tfoot>
              <tbody id='f9y6s'></tbody>
              <legend id='f9y6s'><style id='f9y6s'><dir id='f9y6s'><q id='f9y6s'></q></dir></style></legend>

              1. <i id='f9y6s'><tr id='f9y6s'><dt id='f9y6s'><q id='f9y6s'><span id='f9y6s'><b id='f9y6s'><form id='f9y6s'><ins id='f9y6s'></ins><ul id='f9y6s'></ul><sub id='f9y6s'></sub></form><legend id='f9y6s'></legend><bdo id='f9y6s'><pre id='f9y6s'><center id='f9y6s'></center></pre></bdo></b><th id='f9y6s'></th></span></q></dt></tr></i><div id='f9y6s'><tfoot id='f9y6s'></tfoot><dl id='f9y6s'><fieldset id='f9y6s'></fieldset></dl></div>
              2. <small id='f9y6s'></small><noframes id='f9y6s'>

                  本文介绍了“待办事项"在将 Android 应用程序发布到市场之前列出的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正准备将我的第一个应用发布到 Android 市场,我想知道你们是否有任何关于发布应用的经验的建议显而易见并且已经记录在案.

                  I'm just about ready to publish my first app to the Android market, and I'd like to know if any of you have any tips about any experiences you may have encountered in regard to publishing an app that goes beyond the obvious and already documented.

                  在将应用发布到市场之前,有什么隐藏的警告和/或想法吗?例如,我的一个朋友建议我删除代码中的所有注释,以防有人访问源代码,从而使潜在的代码劫持者"更难破译代码.我认为这是一个明智的建议.

                  Any hidden caveats and/or ideas about what to do before publishing an app to the market? For instance, a buddy of mine recommended that I remove any and all comments in my code just in case someone gets to the source code, thus making it more difficult for the would-be "code jacker" to decipher the code. I thought that was a sensible suggestion.

                  在将他们的应用发布到 Android 市场之前需要做些什么?

                  What are all the things to do before posting their app to the Android market?

                  推荐答案

                  希望还不算太晚,这里有一些建议:

                  Hope it's not too late, here is some advice:

                  • 在周末启动您的应用程序(星期四下午通常是个好时机).为什么这样?好吧,没有公司愿意在周末前 1.5 天发布应用程序 -> 太危险了(以防出现需要快速反应的问题).

                  • Launch your app at the end of the week (Thursday afternoon is usually a good time). Why so? Well, no companies would like to publish an app only 1.5 day before the week end -> too dangerous (in case there is a problem that needs a quick reaction time).

                  在您的应用上使用 proguard(通常,您只需在 default.properties 文件中添加以下行:proguard.config=proguard.cfg).这将优化、缩小和混淆您的代码,对于防止代码窃贼非常有用.您不必删除任何注释,它们会在编译时自动删除.

                  Use proguard on your app (usually, you just have to add this line: proguard.config=proguard.cfg in the default.properties file). This will optimize, shrink and obfuscate your code, very useful for preventing from code thieves. You don't have to delete any comments, they are automatically deleted at compile time.

                  优化您的图像(使用 Paint.NET、PNGCrush 或 OptiPNG).

                  Optimize your images (using Paint.NET, PNGCrush or OptiPNG).

                  针对大多数屏幕尺寸优化布局.您只需在 AndroidStudio 或 Eclipse 中编辑布局时更改屏幕大小即可.

                  Optimize your layouts for most of screen sizes. You can do this by simply changing the screen size while editing a layout in AndroidStudio or Eclipse.

                  尝试/捕获 UI 上的所有异常并显示一个简单的 toast,向用户表明发生了错误.同时,使用 Crashlytics 或类似的东西检索错误.

                  Try/catch all exceptions on the UI and display a simple toast which indicate to the user that something wrong happened. In the meantime, retrieve the error with Crashlytics or something similar.

                  不要使用过多的 .jar 库,优先选择库项目(优化代码大小)并使用 gradle 添加.

                  Don't use too much .jar libraries, prefer library projects (optimize the code size) and add them using gradle.

                  更喜欢使用矢量图像,因为它会减小 APK 大小并正确适合所有设备.

                  Prefer using vector images since it will reduce APK size and fit correctly on all devices.

                  不要使用 Android 偏好设置窗口 -> 这不是很漂亮,即使它在 Android 指南中,也更喜欢制作自己的设置页面.但如果您保留 Android 偏好:请考虑添加图标和颜色.

                  Don't use the Android preferences windows -> that's not really beautiful, even if it's in the Android guidelines, prefer making your own settings page. But if you keep Android preferences: consider adding icons and colors.

                  不要在主屏幕上显示应用的标题(this.requestWindowFeature(Window.FEATURE_NO_TITLE);):好的品牌不需要在上面占用太多空间要识别的屏幕(在菜单中或不总是可见的地方显示一些图标或标题),并考虑使用全屏模式(this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);) 处理游戏和沉浸式内容时.

                  Don't show the title of your app on the main screen (this.requestWindowFeature(Window.FEATURE_NO_TITLE);): good brands don't need to take so much space on a screen to be recognized (show some icon or title in the menu or somewhere that is not always visible), and consider using the fullscreen mode (this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);) when dealing with games and very immersive content.

                  使用 谷歌分析、Fabric Answers 或 Flurry未来分析 -> 尝试获取尽可能多的信息,但不要抓取任何违反客户匿名身份的内容.不要忘记检索发生在用户端的异常(错误和堆栈跟踪).

                  Use Google Analytics, Fabric Answers or Flurry for future analytics -> try to get as much information as possible, but don't grab anything that violates the anonymous identity of the customer. Don't forget to retrieve exceptions (errors and stack traces) that happens on the user side.

                  请你的朋友做猴子测试,向用户学习通常会带来很多好处(例如优先事项和新想法).

                  Ask your friends to do monkey tests, learning from users usually brings many good things (such as priorities and new ideas).

                  考虑在完成所有功能(仅限最重要的功能)之前发布您的应用,除了您的主要功能之外,您还不知道用户想要或需要什么.

                  Consider publishing your app before having finished all features (most important feature only), you don't already know what your users will want or need besides your main feature .

                  在您的应用中添加更多应用"或来自开发者的更多"部分,即免费广告.

                  Add a section "More apps", or "More from developer" in your app, that's free ads.

                  添加发送反馈"部分,让用户可以要求新功能或报告一些错误.

                  Add a section "Send feedback" to give the user the possibility to ask for a new feature or report some bug.

                  请您的用户通过在网络上的某处提供 strings.xml 来翻译您的应用,例如 Crowdin.

                  Ask your users to translate your app by providing the strings.xml somewhere on the web like Crowdin.

                  使用模拟器在每个 Android 版本上试用您的应用 -> 通过这种方式可以检测到许多错误或设计问题.为此,您可以使用提供的模拟器,或者使用 Genymotion 代替(Genymotion 有很多非常有用的功能).

                  Try your app on each Android version with the emulator -> many bugs or design issues will be detected this way. For this, you can use the provided emulator, or use Genymotion instead (Genymotion has a lot of very useful features).

                  想想应用程序的名称 -> 你会使用什么关键字来搜索你的应用程序?这些关键字应该是您的应用程序的名称(Google 将帮助您以这种方式被发现).

                  Think about the name of the app -> what keywords would you use to search for your app? These keywords should be the name of your app (Google will help you get discovered this way).

                  考虑在应用描述中包含关键字,但要以描述性的方式(使用关键字制作可理解的句子).切勿按说明添加关键字列表.

                  Consider including keywords in the app description, but in a descriptive way (make understandable sentences using your keywords). Never add a keyword list as is in the description.

                  成为第一个给您的应用评分 5 星的人,并要求您的家人和朋友也这样做 -> 这可能会影响未来的用户评分.

                  Be the first to rate your app with 5 stars, and ask your family and friends to do the same -> this will likely influence the future users ratings.

                  考虑使用 Google 来翻译您的应用程序的描述、strings.xml 或两者兼而有之.

                  Consider using Google to translate your app either for the description, either for the strings.xml or both.

                  考虑在您的应用中展示广告并使用中介来提高收入AdMob.

                  Consider displaying ads in your apps and use mediation to improve your revenues AdMob.

                  考虑进行应用内结算,而不是提供付费版本 -> 用户更有可能在应用内付费而不是付费版本.

                  Instead of providing a paid version, consider doing in-app billing -> users are more likely to pay in-app rather than paying for a paid version.

                  在应用中添加更改日志 -> 用户通常想知道自上一个版本以来发生了什么变化.

                  Add a change log in the app -> users usually like to know what changed since the last version.

                  为帮助您的用户添加感谢"部分 -> 这将吸引用户使用您的产品.

                  Add a "Thanks" section for the users that helped you -> this will engage users to your product.

                  在您的应用中添加如果您喜欢此应用,请给它评分"链接(到您的 Google Play 描述) -> 您将获得更多 5 星(通常是启动时的弹出窗口,或功能操作后)).

                  Add a "If you like this app, please rate it" link (to your Google Play description) in your app -> you will get more 5 stars (usually a popup on startup, or after a feature action).

                  考虑通过应用中的提示"或说明"部分来解释您的产品.

                  Consider explaining your product via a "Tips" or "Instructions" section in your app.

                  将您的密钥库和凭据信息保存在安全的地方.如果您丢失了密钥库,您将无法为您的应用发布更新.

                  Save your keystore and credentials information somewhere safe. You won't be able to publish an update for your app if you lose your keystore.

                  让您的图标非常简单明了.图标是促使用户下载您的应用的第一件事,也是最后一件.

                  Make your icon really simple and clear. The icon is the first and also mainly the last thing that will make the user download your app.

                  除非不可能,否则首选外部安装(AndroidManifest.xml 中的android:installLocation="preferExternal").

                  Unless it's not possible, prefer external installation (android:installLocation="preferExternal" in the AndroidManifest.xml).

                  阅读 AppAnnie 提示和博客文章,它将为您提供有关如何改进 ASO 和帮助您更好地了解您的用户.

                  Read AppAnnie tips and blog posts, it will give you hints on how to improve ASO and help your better understand your users.

                  这篇关于“待办事项"在将 Android 应用程序发布到市场之前列出的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Android - Is it possible to get install referrer programmatically(Android - 是否有可能以编程方式安装引荐来源网址)
                  How to sign an APK with more than one certificate?(如何使用多个证书签署 APK?)
                  versionCode vs versionName in Android Manifest(Android Manifest 中的 versionCode 与 versionName)
                  What does this Google Play APK publish error message mean?(这个 Google Play APK 发布错误消息是什么意思?)
                  Lost my keystore for uploaded app on android market(丢失了我在 android 市场上上传的应用程序的密钥库)
                  App on Google Play always shows quot;Updatequot; instead of open(Google Play 上的应用程序总是显示“更新;而不是打开)

                        <small id='XMYQN'></small><noframes id='XMYQN'>

                          <legend id='XMYQN'><style id='XMYQN'><dir id='XMYQN'><q id='XMYQN'></q></dir></style></legend>
                        • <tfoot id='XMYQN'></tfoot>
                          • <bdo id='XMYQN'></bdo><ul id='XMYQN'></ul>

                            <i id='XMYQN'><tr id='XMYQN'><dt id='XMYQN'><q id='XMYQN'><span id='XMYQN'><b id='XMYQN'><form id='XMYQN'><ins id='XMYQN'></ins><ul id='XMYQN'></ul><sub id='XMYQN'></sub></form><legend id='XMYQN'></legend><bdo id='XMYQN'><pre id='XMYQN'><center id='XMYQN'></center></pre></bdo></b><th id='XMYQN'></th></span></q></dt></tr></i><div id='XMYQN'><tfoot id='XMYQN'></tfoot><dl id='XMYQN'><fieldset id='XMYQN'></fieldset></dl></div>
                              <tbody id='XMYQN'></tbody>