ndk
ndk copied to clipboard
The Android Native Development Kit
https://www.reddit.com/r/androiddev/comments/8vzqpq/android_ndk_glib_and_glibc_support/e5g99pe/ https://developer.android.com/ndk/guides/stable_apis ought to link directly to the version scripts that define each library so it's easy to see what is actually available and when.
The gradle plugin needs to know what STLs are supported and where the libraries that need to be packaged are located. This is currently hard coded, and for the most...
The vulkan header files included in `/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/vulkan` do not include the `vulkan.hpp` C++ wrapper. The feature request is to add a `vulkan.hpp` header file compatible with the Vulkan version used...
Forked from #476 Proposal for jstring C++ wrapper char16_t wrapper is commented out in example as it requires some utf32-utf16 convertion jstring.hpp ``` #pragma once #include "common.h" #include #include #include...
Forked from https://github.com/android-ndk/ndk/issues/476 Possible API: ```C++ namespace android::trace { class Trace final { public: Trace (const std::string& sectionName); Trace (std::string_view sectionName); ~Trace (); // Use RAII to close trace section...
Forked from https://github.com/android-ndk/ndk/issues/476 Possible API: ```C++ namespace android::graphics { class Bitmap final { public: Bitmap (JNIEnv *env, jobject jbitmap); ~Bitmap (); // Use RAII to release the bitmap/unlock it int...
#### Description Happens when LTO is enabled for armeabi-v7a ABI with NDK r23 - the same code works correctly with NDK r22b. I still haven't been able to create a...
### Description I need to download the latest one automatically with . ```bash #!/bin/bash # Get the latest release tag from the remote repository latest_tag=$(git ls-remote --tags https://github.com/android/ndk.git | awk...
### Description I am trying to get the std module to work on Android. Here is some progress I have made: I compiled the libc++ from llvm-project using ndk toolchain,...
### Description https://github.com/android/ndk/issues/2081 reported issues with the blanket exposure of all the stuff previously hidden by versioner. We've rehidden those things behind `__ANDROID_UNAVAILABLE_SYMBOLS_ARE_WEAK__`, but it'd be nice to be able...