Initial a9 (minsdk=28) support
All checks were successful
eden-license / license-header (pull_request) Successful in 25s

Fixed rootWindowInsets, WindowInsetsCompat.Type.systemBars() in CarouselRecyclerView
This commit is contained in:
Allison Cunha 2025-09-27 10:53:39 -03:00
parent ba20e5c2f5
commit 75f33adbdf
3 changed files with 14 additions and 3 deletions

View file

@ -56,6 +56,16 @@
#include "common/host_memory.h"
#include "common/logging/log.h"
#if defined(__ANDROID__) && __ANDROID_API__ < 30
#include <sys/syscall.h>
#ifndef MFD_CLOEXEC
#define MFD_CLOEXEC 0x0001U
#endif
static int memfd_create(const char* name, unsigned int flags) {
return syscall(__NR_memfd_create, name, flags);
}
#endif
namespace Common {
constexpr size_t PageAlignment = 0x1000;