make apex init .XXrc parsing honour .35rc even though we're not yet sdk=35
Test: TreeHugger Signed-off-by: Maciej Żenczykowski <maze@google.com> Change-Id: I315cfe77c60988d8cdc8ef64bf8cb2f5c37c93db
This commit is contained in:
parent
f52256ea25
commit
5e88a32def
1 changed files with 3 additions and 2 deletions
|
@ -107,8 +107,9 @@ static Result<void> ParseRcScripts(const std::vector<std::string>& files) {
|
|||
}
|
||||
// APEXes can have versioned RC files. These should be filtered based on
|
||||
// SDK version.
|
||||
auto filtered = FilterVersionedConfigs(
|
||||
files, android::base::GetIntProperty("ro.build.version.sdk", INT_MAX));
|
||||
int sdk = android::base::GetIntProperty("ro.build.version.sdk", INT_MAX);
|
||||
if (sdk < 35) sdk = 35; // aosp/main merges only into sdk=35+ (ie. __ANDROID_API_V__+)
|
||||
auto filtered = FilterVersionedConfigs(files, sdk);
|
||||
if (filtered.empty()) {
|
||||
return {};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue