Merge "Adjust check for target_sdk_version for workarounds" into nyc-dev
am: f2c2c07
* commit 'f2c2c073541c42abf72d6d23583c217d7437797d':
Adjust check for target_sdk_version for workarounds
Change-Id: Ie9bb20386fb612db61a21e36c3e9bf831e0eeb1c
This commit is contained in:
commit
8ea5eb16f8
1 changed files with 1 additions and 2 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue