summaryrefslogtreecommitdiff
path: root/android/support/LibraryVersions.java
blob: a046d95e85ebe7b83067b01b36ad422fa7142ba0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
 * Copyright (C) 2017 The Android Open Source Project
 *
 * 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 android.support;

/**
 * The list of versions codes of all the libraries in this project.
 */
public class LibraryVersions {
    /**
     * Version code of the support library components.
     */
    public static final Version SUPPORT_LIBRARY = new Version("28.0.0-SNAPSHOT");

    /**
     * Version code for flatfoot 1.0 projects (room, lifecycles)
     */
    private static final Version FLATFOOT_1_0_BATCH = new Version("1.0.0-beta2");

    /**
     * Version code for Room
     */
    public static final Version ROOM = FLATFOOT_1_0_BATCH;

    /**
     * Version code for Lifecycle extensions (live data, view model etc)
     */
    public static final Version LIFECYCLES_EXT = FLATFOOT_1_0_BATCH;

    /**
     * Version code for RecyclerView & Room paging
     */
    public static final Version PAGING = new Version("1.0.0-alpha3");

    /**
     * Version code for Lifecycle libs that are required by the support library
     */
    public static final Version LIFECYCLES_CORE = new Version("1.0.2");

    /**
     * Version code for Lifecycle runtime libs that are required by the support library
     */
    public static final Version LIFECYCLES_RUNTIME = new Version("1.0.0");

    /**
     * Version code for shared code of flatfoot
     */
    public static final Version ARCH_CORE = new Version("1.0.0");

    /**
     * Version code for shared code of flatfoot runtime
     */
    public static final Version ARCH_RUNTIME = FLATFOOT_1_0_BATCH;

    /**
     * Version code for shared testing code of flatfoot
     */
    public static final Version ARCH_CORE_TESTING = FLATFOOT_1_0_BATCH;
}