forked from rust-mobile/cargo-apk
-
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
SmileSky
committed
Nov 11, 2024
1 parent
caa8062
commit 6533934
Showing
28 changed files
with
190 additions
and
152 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,6 +1,12 @@ | ||
[workspace.dependencies] | ||
dunce = "1.0.5" | ||
serde = "1.0.214" | ||
thiserror = "2.0.3" | ||
|
||
[workspace] | ||
members = [ | ||
"ndk-build", | ||
"ndk-build2", | ||
"ndk-examples", | ||
"cargo-apk", | ||
"cargo-apk2", | ||
] | ||
resolver = "2" |
This file was deleted.
Oops, something went wrong.
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
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,31 @@ | ||
[package] | ||
name = "cargo-apk2" | ||
version = "0.10.0" | ||
authors = [ | ||
"SmileSky <[email protected]>", | ||
"The Rust Windowing contributors" | ||
] | ||
edition = "2021" | ||
description = "Rust轻松构建安卓应用的Cargo扩展" | ||
license = "MIT OR Apache-2.0" | ||
keywords = ["android", "ndk", "apk"] | ||
repository = "https://github.com/mzdk100/cargo-apk2.git" | ||
rust-version = "1.82.0" | ||
|
||
[dependencies] | ||
anyhow = "1.0.93" | ||
cargo-subcommand = "0.12.0" | ||
dunce.workspace = true | ||
env_logger = "0.11.5" | ||
log = "0.4.22" | ||
serde.workspace = true | ||
thiserror.workspace = true | ||
toml = "0.8.19" | ||
|
||
[dependencies.ndk-build2] | ||
path = "../ndk-build2" | ||
version = "0.10.0" | ||
|
||
[dependencies.clap] | ||
version = "4.5.20" | ||
features = ["derive"] |
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
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
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
File renamed without changes.
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
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
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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,28 @@ | ||
[package] | ||
name = "ndk-build2" | ||
version = "0.10.0" | ||
authors = [ | ||
"SmileSky <[email protected]>", | ||
"The Rust Windowing contributors", | ||
] | ||
edition = "2021" | ||
description = "用于构建 Android 二进制文件的实用程序" | ||
license = "MIT OR Apache-2.0" | ||
keywords = ["android", "ndk", "apk"] | ||
repository = "https://github.com/mzdk100/cargo-apk2.git" | ||
rust-version = "1.82.0" | ||
|
||
[dependencies] | ||
android-build = "0.1.0" | ||
dirs = "5.0.1" | ||
dunce.workspace = true | ||
thiserror.workspace = true | ||
which = "7.0.0" | ||
|
||
[dependencies.serde] | ||
workspace = true | ||
features = ["derive"] | ||
|
||
[dependencies.quick-xml] | ||
version = "0.37.0" | ||
features = ["serialize"] |
File renamed without changes.
Oops, something went wrong.