Merge "Adjust check for target_sdk_version for workarounds" into nyc-dev

This commit is contained in:
Dimitry Ivanov 2016-03-30 01:59:07 +00:00 committed by Android (Google) Code Review
commit f2c2c07354
1 changed files with 1 additions and 2 deletions

View File

@ -40,8 +40,7 @@ namespace android {
static constexpr const char* kPublicNativeLibrariesConfig = "/system/etc/public.libraries.txt";
static bool namespace_workaround_enabled(int32_t target_sdk_version) {
// target_sdk_version = 0 is another way of saying "target current sdk level"
return target_sdk_version != 0 && target_sdk_version <= 23;
return target_sdk_version <= 23;
}
class LibraryNamespaces {