Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3215e0b5 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "[ApplicationInfo] update doc on splitSourceDirs"

parents b79278da e3005501
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -11219,9 +11219,9 @@ package android.content.pm {
    field public int requiresSmallestWidthDp;
    field public String[] sharedLibraryFiles;
    field public String sourceDir;
    field public String[] splitNames;
    field public String[] splitPublicSourceDirs;
    field public String[] splitSourceDirs;
    field @Nullable public String[] splitNames;
    field @Nullable public String[] splitPublicSourceDirs;
    field @Nullable public String[] splitSourceDirs;
    field public java.util.UUID storageUuid;
    field public int targetSdkVersion;
    field public String taskAffinity;
+7 −1
Original line number Diff line number Diff line
@@ -941,21 +941,27 @@ public class ApplicationInfo extends PackageItemInfo implements Parcelable {

    /**
     * The names of all installed split APKs, ordered lexicographically.
     * May be null if no splits are installed.
     */
    @Nullable
    public String[] splitNames;

    /**
     * Full paths to zero or more split APKs, indexed by the same order as {@link #splitNames}.
     * Full paths to split APKs, indexed by the same order as {@link #splitNames}.
     * May be null if no splits are installed.
     */
    @Nullable
    public String[] splitSourceDirs;

    /**
     * Full path to the publicly available parts of {@link #splitSourceDirs},
     * including resources and manifest. This may be different from
     * {@link #splitSourceDirs} if an application is forward locked.
     * May be null if no splits are installed.
     *
     * @see #splitSourceDirs
     */
    @Nullable
    public String[] splitPublicSourceDirs;

    /**