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

Commit bd3b1b81 authored by Colin Cross's avatar Colin Cross Committed by Gerrit Code Review
Browse files

Merge changes from topic "V"

* changes:
  Add VanillaIceCream to android.os.Build
  Add VanillaIceCream to aapt2 codenames
parents 4e225633 53d1cf77
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -31081,6 +31081,7 @@ package android.os {
    field public static final int S_V2 = 32; // 0x20
    field public static final int TIRAMISU = 33; // 0x21
    field public static final int UPSIDE_DOWN_CAKE = 10000; // 0x2710
    field public static final int VANILLA_ICE_CREAM = 10000; // 0x2710
  }
  public final class Bundle extends android.os.BaseBundle implements java.lang.Cloneable android.os.Parcelable {
+5 −0
Original line number Diff line number Diff line
@@ -1223,6 +1223,11 @@ public class Build {
         * Upside Down Cake.
         */
        public static final int UPSIDE_DOWN_CAKE = CUR_DEVELOPMENT;

        /**
         * Vanilla Ice Cream.
         */
        public static final int VANILLA_ICE_CREAM = CUR_DEVELOPMENT;
    }

    /** The type of build, like "user" or "eng". */
+2 −2
Original line number Diff line number Diff line
@@ -26,8 +26,8 @@ using android::StringPiece;
namespace aapt {

static ApiVersion sDevelopmentSdkLevel = 10000;
static const auto sDevelopmentSdkCodeNames =
    std::unordered_set<StringPiece>({"Q", "R", "S", "Sv2", "Tiramisu", "UpsideDownCake"});
static const auto sDevelopmentSdkCodeNames = std::unordered_set<StringPiece>(
    {"Q", "R", "S", "Sv2", "Tiramisu", "UpsideDownCake", "VanillaIceCream"});

static const std::vector<std::pair<uint16_t, ApiVersion>> sAttrIdMap = {
    {0x021c, 1},