commit | 421a72865de88c14db0f4868272c577d6ebee679 | [log] [tgz] |
---|---|---|
author | Alexei Nicoara <[email protected]> | Thu Jul 07 13:47:24 2022 +0100 |
committer | Alexei Nicoara <[email protected]> | Thu Jul 07 15:42:17 2022 +0000 |
tree | 9ce7e695e63b0282f15aa687b301f1cf28d27a64 | |
parent | 8af7f914edf2f9852d6e1a1e2e069b384cebcaab [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
diff --git a/build/apex/manifest-art.json b/build/apex/manifest-art.json index bf45076..4f20be6 100644 --- a/build/apex/manifest-art.json +++ b/build/apex/manifest-art.json
@@ -1,6 +1,10 @@ { "name": "com.android.art", - "version": 339990000, + + // Placeholder module version to be replaced during build. + // Do not change! + "version": 0, + "provideNativeLibs": [ "libjdwp.so" ],