ndk icon indicating copy to clipboard operation
ndk copied to clipboard

The Android Native Development Kit

Results 133 ndk issues
Sort by recently updated
recently updated
newest added

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.

docs
doc-tooling

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...

enhancement

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...

enhancement
c++ wrapper request

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...

enhancement
c++ wrapper request

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...

c++ wrapper request

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...

c++ wrapper request

#### 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...

bug

### 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,...

enhancement

### 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...

enhancement