/*******************************************************************************
* Copyright (C) 2005-2015 Alfresco Software Limited.
*
* This file is part of Alfresco Mobile for Android.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
package org.alfresco.mobile.android.application;
public interface VersionNumber
{
/** Released 2 Dec 2012. */
int VERSION_1_0_0 = 9;
/** Released 16 Jan 2013. */
int VERSION_1_0_1 = 10;
/** Released 24 Jan 2013. */
int VERSION_1_0_2 = 11;
/** Released 1 May 2013. */
int VERSION_1_1_0 = 14;
/** Released 25 July 2013. */
int VERSION_1_2_0 = 16;
/** Released 4 Nov 2013. */
int VERSION_1_3_0 = 20;
/** Released 5 Dec 2013. */
int VERSION_1_3_1 = 21;
/** Released 24 Jan 2014. */
int VERSION_1_3_2 = 22;
/** Released 8 Apr 2014. */
int VERSION_1_4_0 = 30;
/** Released 1 Oct 2014. */
int VERSION_1_4_1 = 35;
/** Released 20 Apr 2015. */
int VERSION_1_5_0 = 40;
/** Release 11 June 2015. */
int VERSION_1_5_1 = 45;
/** Release 3 July 2015. */
int VERSION_1_5_2 = 46;
/** Release 19 Nov 2015. */
int VERSION_1_6_0 = 50;
/** Release 11 March 2016. */
int VERSION_1_6_1 = 60;
/** Release April 2016. */
int VERSION_1_6_2 = 61;
/** Release June 2016. */
int VERSION_1_7_0 = 70;
/** Release XXX 2017. */
int VERSION_1_8_0 = 80;
int LATEST_VERSION = VERSION_1_8_0;
}