Add os::android-apis category for Android bindings#8558
Merged
Conversation
Android is its own OS on top of Linux with _lots_ of custom/specific interfaces. Many crates are wrapping (parts) of it, such as [the NDK crate]. Since there's an `os::XXX-apis` tag for many OSes already, Android also belongs in this list. [the NDK crate]: https://crates.io/crates/ndk
MarijnS95
added a commit
to rust-mobile/ndk
that referenced
this pull request
Apr 29, 2024
`os::android-apis` depends on rust-lang/crates.io#8558
Contributor
Author
|
Looks like it's public already, many thanks! I published a crate with this category before it was set live, and it doesn't seem to be accounted for that category yet though: https://crates.io/crates/android-powerstats |
MarijnS95
added a commit
to rust-mobile/ndk
that referenced
this pull request
Apr 30, 2024
`os::android-apis` is a new category that I added upstream in rust-lang/crates.io#8558. The rest already exists on crates.io, and should make it easier to find/place this crate.
Member
yeah, we don't retroactively scan all the existing crate versions for potentially matching new categories. you can publish a new version of that crate though and that should add it to the category then. |
MarijnS95
added a commit
to rust-mobile/ndk
that referenced
this pull request
May 14, 2024
`os::android-apis` is a new category that I added upstream in rust-lang/crates.io#8558. The rest already exists on crates.io, and should make it easier to find/place this crate.
MarijnS95
added a commit
to rust-mobile/ndk
that referenced
this pull request
May 24, 2024
`os::android-apis` is a new category that I added upstream in rust-lang/crates.io#8558. The rest already exists on crates.io, and should make it easier to find/place this crate.
MarijnS95
added a commit
to rust-mobile/ndk
that referenced
this pull request
May 24, 2024
`os::android-apis` is a new category that I added upstream in rust-lang/crates.io#8558. The rest already exists on crates.io, and should make it easier to find/place this crate.
MarijnS95
added a commit
to rust-mobile/android_logger-rs
that referenced
this pull request
Aug 7, 2024
Since this crate provides access/interop to an Android-specific (OS) API, use the new `os::android-apis` category that I recently upstreamed at rust-lang/crates.io#8558. That'll make this crate show up at https://crates.io/categories/os::android-apis going forward.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Android is its own OS on top of Linux with lots of custom/specific interfaces. Many crates are wrapping (parts) of it, such as the NDK crate. Since there's an
os::XXX-apistag for many OSes already, Android also belongs in this list.