Update version number

This also changes the version number format. Instead
of being a single increment each time, we're actually
encoding the date in the version number.

The format is now vvMMDDc

where vv is major version number
MM is the ordinal month number. This starts at 0 for each major release and
   counts up for each month
DD is the day of the month
c is a code which increments per version, in case we have multiple releases
   on the same date. This should start at zero.

Change-Id: I006745754614e9c72261035748a90a38871b67e6
This commit is contained in:
Martin Hibdon 2013-12-09 15:55:06 -08:00
parent 5632d4449b
commit af7f7130fd
1 changed files with 8 additions and 1 deletions

View File

@ -14,9 +14,16 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<!-- The format of the version code is vvMMDDc
vv is major version number
MM is the ordinal month number. This starts at 0 for each major release and
counts up for each month
DD is the day of the month
c is a code which increments per version, in case we have multiple releases
on the same date. This should start at zero. -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.email"
android:versionCode="620000" >
android:versionCode="6200090" >
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>