{"id":13484055,"url":"https://github.com/android/ndk","last_synced_at":"2025-05-14T07:09:29.154Z","repository":{"id":37390850,"uuid":"48128791","full_name":"android/ndk","owner":"android","description":"The Android Native Development Kit","archived":false,"fork":false,"pushed_at":"2025-04-21T18:18:51.000Z","size":35963,"stargazers_count":2086,"open_issues_count":119,"forks_count":279,"subscribers_count":214,"default_branch":"master","last_synced_at":"2025-04-21T19:29:38.860Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/android.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-12-16T18:51:36.000Z","updated_at":"2025-04-21T18:18:50.000Z","dependencies_parsed_at":"2024-06-04T22:26:34.766Z","dependency_job_id":"55589be6-b5da-4cbd-bef6-5693bbaef14d","html_url":"https://github.com/android/ndk","commit_stats":{"total_commits":221,"total_committers":9,"mean_commits":"24.555555555555557","dds":0.5565610859728507,"last_synced_commit":"de2a04ed3fb38cb5b6a8e3adccca58df66f7e50c"},"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/android%2Fndk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/android%2Fndk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/android%2Fndk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/android%2Fndk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/android","download_url":"https://codeload.github.com/android/ndk/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254092787,"owners_count":22013290,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-07-31T17:01:18.731Z","updated_at":"2025-05-14T07:09:24.136Z","avatar_url":"https://github.com/android.png","language":null,"funding_links":[],"categories":["Others"],"sub_categories":[],"readme":"# Android Native Development Kit (NDK)\n\nThe NDK allows Android application developers to include native code in their\nAndroid application packages, compiled as JNI shared libraries.\n\nFor what we're working on, see the\n[milestones](https://github.com/android/ndk/milestones).\n\nFor further into the future, see the\n[NDK Roadmap](https://android.googlesource.com/platform/ndk/+/master/docs/Roadmap.md).\n\nThe source for the NDK is maintained in AOSP. See\nhttps://android.googlesource.com/platform/ndk/+/master/README.md.\n\n## RFC\n\nThis section lists any in-progress features with open discussion bugs. We're\nstill working on these and want to hear from you, so please read the thread and\njoin the discussion if you have anything to add!\n\n- None right now :)\n\n## NDK documentation\n\nTutorial and API reference documentation is available on the\n[Android Developer website](https://developer.android.com/ndk/):\n\n- The [NDK Guides](https://developer.android.com/ndk/guides/) help you get\n  started with the NDK.\n  - Information about [building](https://developer.android.com/ndk/guides/build)\n    or\n    [debugging and profiling](https://developer.android.com/ndk/guides/debug).\n  - Tutorial information for\n    [High-Performance Audio](https://developer.android.com/ndk/guides/audio),\n    [Vulkan](https://developer.android.com/ndk/guides/graphics), and\n    [Neural Networks](https://developer.android.com/ndk/guides/neuralnetworks).\n- The [NDK API Reference](https://developer.android.com/ndk/reference) covers\n  all Android-specific APIs.\n\n## C library (\"bionic\") and dynamic linker documentation\n\nThe documentation for Android's C library (\"bionic\") may be useful:\n\n- [Android bionic status](https://android.googlesource.com/platform/bionic/+/master/docs/status.md)\n  talks about what APIs are available in what releases, and behaviors that have\n  changed between API levels.\n- [Android changes for NDK developers](https://android.googlesource.com/platform/bionic/+/master/android-changes-for-ndk-developers.md)\n  details important dynamic linker changes in various Android releases.\n  Invaluable if you're having trouble loading your .so files.\n- [32-bit ABI bugs](https://android.googlesource.com/platform/bionic/+/master/docs/32-bit-abi.md)\n  documents issues for 32-bit code.\n\n## Understanding crashes/tombstones\n\nThe documentation for Android OS developers has:\n\n- An overview of\n  [crash dumps/tombstones](https://source.android.com/devices/tech/debug).\n- A detailed reference to understanding\n  [common crashes](https://source.android.com/devices/tech/debug/native-crash).\n\n## Other resources\n\n- Discussions related to the Android NDK happen on the\n  [android-ndk Google Group](http://groups.google.com/group/android-ndk).\n- File bugs against the NDK at https://github.com/android-ndk/ndk/issues.\n- See our\n  [calendar for upcoming releases](https://github.com/android-ndk/ndk/wiki).\n- The NDK and Android Studio support ndk-build and CMake out of the box, but we\n  also have a\n  [Build System Maintainers Guide](https://android.googlesource.com/platform/ndk/+/master/docs/BuildSystemMaintainers.md).\n- If you want to work _on_ the NDK itself rather than just use it, see the\n  [README.md in the NDK source](https://android.googlesource.com/platform/ndk/+/master/README.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandroid%2Fndk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandroid%2Fndk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandroid%2Fndk/lists"}