-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
实现数组类型的自动关联; 更新依赖项; 发布0.3.5版本。
- Loading branch information
SmileSky
committed
Nov 21, 2024
1 parent
c8fb71f
commit 634ae13
Showing
20 changed files
with
4,340 additions
and
94 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 |
---|---|---|
|
@@ -14,7 +14,7 @@ authors = ["mzdk100 <[email protected]>"] | |
description = "用于Rust的Android API的高级封装" | ||
keywords = ["android", "api", "sdk", "jni", "java"] | ||
license = "Apache-2.0" | ||
version = "0.3.5" | ||
version = "0.3.6" | ||
edition = "2021" | ||
readme = "README.md" | ||
repository = "https://gitcode.net/mzdk100/droid-wrap.git" | ||
|
@@ -30,10 +30,13 @@ rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"] | |
android = ["java_lang"] | ||
android_app = ["android", "android_view", "java_lang"] | ||
android_content = ["android", "android_media", "android_os", "java_lang", "java_io"] | ||
android_hardware = ["android"] | ||
android_content_pm = [] | ||
android_graphics = ["android"] | ||
android_hardware = ["android", "android_graphics", "android_renderscript"] | ||
android_hardware_vibrator = ["android_hardware"] | ||
android_media = ["android"] | ||
android_os = ["android", "android_hardware_vibrator", "java_lang"] | ||
android_renderscript = ["android"] | ||
android_speech = ["android"] | ||
android_speech_tts = ["android_speech", "android_os", "java_lang"] | ||
android_text = ["android", "java_lang"] | ||
|
@@ -51,6 +54,7 @@ java_nio_file = ["java_nio"] | |
test = [] | ||
test_android_app = ["android_app", "android_widget"] | ||
test_android_content = ["android_content"] | ||
test_android_hardware = ["android_app", "android_content_pm"] | ||
test_android_os = ["android_app", "android_content", "android_os", "java_lang"] | ||
test_android_text = ["android_text"] | ||
test_android_view = ["android_content", "android_view"] | ||
|
@@ -67,11 +71,11 @@ test_java_nio = ["java_nio"] | |
[dependencies] | ||
|
||
[dependencies.droid-wrap-utils] | ||
version = "0.3.4" | ||
version = "0.3.6" | ||
path = "utils" | ||
|
||
[dependencies.droid-wrap-derive] | ||
version = "0.3.5" | ||
version = "0.3.6" | ||
path="derive" | ||
|
||
[workspace] | ||
|
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
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
Oops, something went wrong.