摘要:
版本化您的应用版本控制是一个非常重要的概念,在应用升级和维护的时候非常有用。版本控制的重要性因为:Versioning is a critical component of your application upgrade and maintenancestrategy. Versioning is important because:Users need to have specific information about the application version that is installed on their devices and the upgrade versions a 阅读全文
随笔档案-2013年3月8日
Preparing for Release(发布前的准备)
2013-03-08 16:56 by java20130722, 228 阅读, 收藏,
摘要:
发布前的准备在发布之前,有些准备工作要做。开发工作是所有过程中的第一个步骤。当您准备发布您的应用,配置,构建,和测试一个将要发布的应用。配置工作是直截了当地,包括清理代码和代码修改,为了优化应用。构建构成与调试过程很类似,可以通过JDK和android SDK工具做到。测试是最后的检查工作,可以保证应用能在真是的环境中正常的运行。当应用准备好并且签名之后,就可以直接发布到应用市场中(google play)。Figure 1. Preparing for release is a requireddevelopmenttask and is the first step in the publ 阅读全文
publishing(android)
2013-03-08 15:46 by java20130722, 457 阅读, 收藏,
摘要:
发布应用发布是使应用能够被用户使用的一个过程,当你发布应用的时候,有两个主要步骤:1.准备要发布的应用2.发布应用应用给用户通常,应用都会发布到应用市场里面,例如google play 市场。然后,还可以把应用直接给用户或者是从网站上下载应用准备应用准备应用有很多的步骤,如下:1.配置要发布的应用最低限度:必须从代码中去掉Log和从manifest文件中去掉android:debuggable属性。还需要在manifest元素下提供android:versionCode和android:versionName属性,为了满足google Play的需求还需要做些配置。2.构建和签名要发布的应用A 阅读全文