Bump vdex version to regenerate vdex files

https://googleplex-android-review.git.corp.google.com/#/c/2344736/
fixed the issue for corrupted vdex files, however, we could still be
using the same corrupted vdex files due to the same vdex version.

Test: make
Bug: 62515426
Change-Id: Ieaf9b7a07eefaf42810861623d2327a2a38cb8f6
diff --git a/runtime/vdex_file.h b/runtime/vdex_file.h
index ece5491..93d282b 100644
--- a/runtime/vdex_file.h
+++ b/runtime/vdex_file.h
@@ -65,7 +65,8 @@
 
    private:
     static constexpr uint8_t kVdexMagic[] = { 'v', 'd', 'e', 'x' };
-    static constexpr uint8_t kVdexVersion[] = { '0', '0', '5', '\0' };  // access flags
+    // Last update: Disable in-place vdex update
+    static constexpr uint8_t kVdexVersion[] = { '0', '0', '6', '\0' };
 
     uint8_t magic_[4];
     uint8_t version_[4];