-
-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bundling forces with cargo-apk
?
#28
Comments
Sounds good.
I'm not a big fan of monorepos but I am happy to make you a maintainer of this repo if your pull request is good. 😄 |
Me neither, but it has proven useful for small utilities that share the same underlying crate(s) - it saves a ton of hassle having git references in |
Rather than let this issue linger open, I'll close it for now. If you choose to make a pull request in the future that implements what was described, that would be great. 🙂 |
Hi! I'm one of the maintainers for android-ndk-rs, and occasionally use
cargo-ndk
to build a crate for Android that doesn't need the surrounding apk. Unfortunatelycargo-ndk
doesn't work with the R23 NDK due to an issue that has already been solved inndk-build
. I also couldn't getANDROID_NDK_ROOT
to work, presumably becausecargo-ndk
only recognizesANDROID_NDK_HOME
.ndk-build
is our crate for cross-compiling native binaries and creating apks, and is exactly focused at being reusable in ie.cargo-ndk
. Since we're both pursuing the same goal and doing the exact same thing, would you be open to see if we can unify our projects and relieve/share the maintenance "burden"? I envision to start with simply comparingndk-build
tocargo-ndk
and integrate any features that are missing, followed by migratingcargo-ndk
over tondk-build
. We can optionally takecargo-ndk
into theandroid-ndk-rs
tree being another "frontend" CLI tondk-build
just likecargo-apk
, if both parties are open to this.Looking forward to your opinion!
The text was updated successfully, but these errors were encountered: