diff options
author | 2022-07-07 15:09:51 +0100 | |
---|---|---|
committer | 2022-07-11 16:26:26 +0000 | |
commit | 1709fa76c6e1c53d98acd6785fdffc3a0fee4a91 (patch) | |
tree | 12517557fcd1c832569d6c7a2a42b5bc0ab8e68f /apex | |
parent | 5325b6c2d30279c802b9598124fcc7bb88b62b0b (diff) |
Setting apex version to the placeholder value
When the apex version is set to 0, the version number will be replaced by the build system to the default value for the current branch.
The default value for mainline module manifest version is stored in the defaultManifestVersion constant: https://android.googlesource.com/platform/build/soong/+/refs/heads/master/apex/constants.go#36
The version should not be changed manually in the manifest. Release tooling will set this version to the release version on the release branches.
Test: presubmit
Bug: 231691643
Change-Id: I30b5b486bca521ebdeed17dba7afc61f2c529ab8
Merged-In: I30b5b486bca521ebdeed17dba7afc61f2c529ab8
Ignore-AOSP-First: fixing merge conflicts
(cherry picked from commit fe4dc25c518b56e96cd6975ccb4dbd7e187522b3)
Merged-In: I30b5b486bca521ebdeed17dba7afc61f2c529ab8
Diffstat (limited to 'apex')
-rw-r--r-- | apex/apex_manifest.json | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apex/apex_manifest.json b/apex/apex_manifest.json index 1708bbe32b..4fa8b59be1 100644 --- a/apex/apex_manifest.json +++ b/apex/apex_manifest.json @@ -1,5 +1,8 @@ { "name": "com.android.wifi", - "version": 339990000 + + // Placeholder module version to be replaced during build. + // Do not change! + "version": 0 } |