summaryrefslogtreecommitdiffstats
path: root/updater_sample/src/com/example/android/systemupdatersample/util/PackageFiles.java
blob: b485234eaeb83a89e0cc8c933e379f1736a2b258 (plain) (blame)
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
/*
 * Copyright (C) 2018 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 com.example.android.systemupdatersample.util;

/** Utility class for an OTA package. */
public final class PackageFiles {

    /**
     * Directory used to perform updates.
     */
    public static final String OTA_PACKAGE_DIR = "/data/ota_package";

    /**
     * update payload, it will be passed to {@code UpdateEngine#applyPayload}.
     */
    public static final String PAYLOAD_BINARY_FILE_NAME = "payload.bin";

    /**
     * Currently, when calling {@code UpdateEngine#applyPayload} to perform actions
     * that don't require network access (e.g. change slot), update_engine still
     * talks to the server to download/verify file.
     * {@code update_engine} might throw error when rebooting if {@code UpdateEngine#applyPayload}
     * is not supplied right headers and tokens.
     * This behavior might change in future android versions.
     *
     * To avoid extra network request in {@code update_engine}, this file has to be
     * downloaded and put in {@code OTA_PACKAGE_DIR}.
     */
    public static final String PAYLOAD_METADATA_FILE_NAME = "payload_metadata.bin";

    public static final String PAYLOAD_PROPERTIES_FILE_NAME = "payload_properties.txt";

    /** The zip entry in an A/B OTA package, which will be used by update_verifier. */
    public static final String CARE_MAP_FILE_NAME = "care_map.txt";

    public static final String METADATA_FILE_NAME = "metadata";

    /**
     * The zip file that claims the compatibility of the update package to check against the Android
     * framework to ensure that the package can be installed on the device.
     */
    public static final String COMPATIBILITY_ZIP_FILE_NAME = "compatibility.zip";

    private PackageFiles() {}
}