forked from android/ndk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 8948d4e
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
Contributing to the Android NDK | ||
=============================== | ||
|
||
This guide will help you contribute to the Android NDK, whether by reporting | ||
issue or submitting a patch. | ||
|
||
Reporting Issues | ||
---------------- | ||
|
||
Our bug tracker is hosted on GitHub: https://github.com/android-ndk/ndk/issues. | ||
|
||
**Note:** Bugs against Android Studio or Gradle should be filed at | ||
http://b.android.com, not here. | ||
|
||
Before filing a bug, check that you are using the latest version of the NDK. The | ||
latest stable version and the preview release of the next stable version are | ||
listed on our wiki: https://github.com/android-ndk/ndk/wiki#downloads. | ||
|
||
Submitting Patches | ||
------------------ | ||
|
||
While we use GitHub for our bug tracking and documentation, we do not manage our | ||
code in GitHub. Like the rest of Android, we are hosted in AOSP. This means that | ||
patches are uploaded to and submitted via Gerrit. | ||
|
||
Follow the [contribution instructions for | ||
AOSP](http://source.android.com/source/submit-patches.html). When you run `repo | ||
init`, follow the instructions in the NDK's [README.md]. We have a different set | ||
of dependencies than AOSP, also noted in our [README.md]. | ||
|
||
Instructions for building the NDK and running our tests are documented in | ||
[README.md] and [Testing.md](docs/Testing.md). Note that the NDK cannot be built | ||
on Windows; only Linux and Darwin hosts are supported. | ||
|
||
Check the [OWNERS file](OWNERS) for reviewers. | ||
|
||
[README.md]: README.md |