summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Geoffray <ngeoffray@google.com>2021-09-14 14:13:58 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-09-14 14:13:58 +0000
commit46c6617f075520fa69b0f0dd52006a7e10062876 (patch)
tree5aae4e675fb1f150d51640bbb5d2993b612140bb
parent0f984d4d499aba8962c00a751eda371da25a176e (diff)
parent020c79e5f2b61924d6e21e8162f52e992d7b30fe (diff)
Update .oat version after disabling partial LSE. am: 020c79e5f2
Original change: https://googleplex-android-review.googlesource.com/c/platform/art/+/15827548 Change-Id: I5a9157ae73bc855ff801b5d49b3613613eebc4a9
-rw-r--r--runtime/oat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/oat.h b/runtime/oat.h
index ab45b84888..31a328d979 100644
--- a/runtime/oat.h
+++ b/runtime/oat.h
@@ -32,8 +32,8 @@ class InstructionSetFeatures;
class PACKED(4) OatHeader {
public:
static constexpr std::array<uint8_t, 4> kOatMagic { { 'o', 'a', 't', '\n' } };
- // Last oat version changed reason: Apex versions in key/value store.
- static constexpr std::array<uint8_t, 4> kOatVersion { { '1', '9', '5', '\0' } };
+ // Last oat version changed reason: Disable partial LSE b/197818595.
+ static constexpr std::array<uint8_t, 4> kOatVersion { { '1', '9', '9', '\0' } };
static constexpr const char* kDex2OatCmdLineKey = "dex2oat-cmdline";
static constexpr const char* kDebuggableKey = "debuggable";