Commit eeb60f7
permissions,
* initial version
* make custom permission work without const-vec change
* wiring up with cli
* yey symbol found
* wip
* holy moly
* proper ui
* cleanup
* okay
* wip cleanup
* reduce boilerplate code into mobile-core
* Delete copilot-instructions.md
* revert hello-world example for low diff
* fix android build in mobile-core
* rename permission to static_permission
* small success with popup location on android
* android popup working
* Refactor permission checks for readability
Improves code formatting in has_location_permission and check_permission functions by splitting long lines and updating function signatures for better readability. No functional changes were made.
* wip consolidate all java files and build from cli instead of build.rs
* few cli cleanups
* wip java_plugin macro
* cleanup cleanup cleanup
* Update java_plugin macro to use full relative file paths
The java_plugin macro now accepts full relative paths for Java files instead of assuming a fixed directory structure. Documentation and usage examples have been updated to reflect this change, improving flexibility and clarity for specifying file locations.
* Improve iOS geolocation permission and retrieval logic
Added checks for authorization status before requesting location permissions and retrieving location data. Now only requests permission if not determined, and attempts to retrieve cached location before starting location updates, improving efficiency and user experience.
* Add ios_plugin macro for iOS framework metadata
Introduces the ios_plugin! macro in mobile-core-macro for declarative iOS framework metadata embedding. Updates mobile-core to re-export the macro and refactors mobile-geolocation to use ios_plugin! instead of manual linker attributes.
* not needed
* simplify the plugin
* rename mobile-core to platform-bridge and mobile-core-macro to platform-bridge-macro
* Refactor metadata serialization buffer initialization
Replaces inline creation of ConstVec with a named EMPTY constant for buffer initialization in metadata serialization. This improves code clarity and maintainability.
* mobile-geolocation out of dioxus
* take the example also out of dioxus
* remove example from cargo toml
* remove demo css
* revert hello-world example
* revert mac.plist
* revert gitignore
* Remove basic usage example for permissions crate
Deleted the basic_usage.rs example file from the permissions crate. This change may be part of a cleanup or refactoring to remove outdated or unnecessary example code.
* Delete plan.md
* remove dups
* cleanup java build
* cleanup permission symbol extraction
* update todo
* small slop of tested permissions in enums for minimum diff
* Refactor symbol extraction into linker_symbols module
Moved generic symbol extraction logic from android_java.rs and permissions.rs into a new linker_symbols.rs module. Updated both files to use the shared utilities for finding symbol offsets, reducing code duplication and improving maintainability.
* wip consolidate ios and macos as darwin
* Add docs and re-export for MainThreadCell and MainThreadMarker
Expanded documentation for MainThreadCell, clarifying usage and safety. Changed visibility of MainThreadCell to public, improved method docs, and re-exported MainThreadMarker in darwin/mod.rs for easier access.
* Update Darwin framework symbol and section names
Changed the framework symbol prefix from '__DARWIN_FRAMEWORK__' to '__DARWIN_FW__' and updated the Mach-O section name from '__darwin_framework' to '__darwin_fw' for compliance with section name length limits and consistency.
* Fix Info.plist path handling for iOS and macOS
Adds comments and corrects the path to Info.plist for iOS and macOS app bundles. For iOS, Info.plist is at the root of the .app bundle, while for macOS it is inside Contents/. Also improves warning message to include the missing path.
* Handle missing permission symbols and web bundle case
Improves permission extraction by returning an empty manifest when no permission symbols are found or when building a web bundle, as permissions are runtime-only in that case. Adds debug logging for missing symbols and ensures robust handling of these scenarios.
* objc2 over framework
* windows, linux, web all permissions are runtime so cleanup
* only include permissions for build time
* cleanup unnecessary test
* more cleanup
* extract shared into dx-macro-helpers
* rc.3 to 0.7.0 for const-serialize
* Add CustomPermissionBuilder and enhance PermissionBuilder for better permission management
- Introduced `CustomPermissionBuilder` for creating custom permissions with platform-specific identifiers.
- Enhanced `PermissionBuilder` to support custom permissions and location permissions with a clear builder pattern.
- Updated documentation and examples in the macro README to reflect new usage patterns for custom and location permissions.
- Improved parsing logic in the macro to handle both builder and direct construction patterns for permissions.
* clippy fixes
* implement const cbor encoding + decoding for basic types
* Add #[used] attribute to linker sections for optimization protection
- Added #[used] attribute to linker sections in both permission and Android plugin macros to prevent the linker from optimizing away symbols, ensuring they are preserved even if unused.
- Created static references to linker sections to enhance defense-in-depth against optimization issues.
* implement map encoding and decoding
* fix map test
* wip unified linker symbol
* cleanup permissions
* pipe java sources with manganis as well
* all tests passing
* dynamically sized arrays
* smaller str encoding
* swap array and list and add more documentation
* move serialization and deserialization for each struct together
* support both legacy and new assets
* bump const serialize version
* fix asset conversion code
* pull out manganis symbol struct from tuble
* test reading old asset versions
* more list/array cleanup and bump rust version
* fix clippy
* Revert "pipe java sources with manganis as well"
This reverts commit ddea9a4.
* Revert "cleanup permissions"
This reverts commit 7b18500.
* Revert "wip unified linker symbol"
This reverts commit 813e33f.
* Revert "Add #[used] attribute to linker sections for optimization protection"
This reverts commit a94a7a3.
* update cargo lock
* wip permission through assets
* abit cleanup
* fix reexports
* fix assets
* Fix the permissions piping
* some small cleanups
* checkout const-serialize as per #4932 and fix build
* invoking swift as a package
* geolocation package & example dumping for easy testing
* keep geolocation simple for testing
* cleanups
* pipe everything through __ASSETS__ and cleanup
* remove linker_symbols helper file
* example
* re example
* copy build methos into mobile-plugin-build crate
* Add conditional import for dioxus_07 feature
Introduces a conditional import to use the dioxus_07 crate when the corresponding feature is enabled, improving compatibility with different dioxus versions.
* Improve error handling and JNI reference usage
Adds a null check for Objective-C instance initialization in the iOS geolocation plugin to prevent errors on failed allocation. Refactors Android callback to use local JNI references instead of creating unnecessary global references, reducing potential memory leaks.
* revert changes on playwright
* Update dioxus dependency to 0.7.2 in Cargo.lock
Removed dioxus 0.7.1 from dependencies, retaining only dioxus 0.7.2 for the dioxus-cli-optimization-test package.
* small cleanup
* Add legacy const-serialize 0.7 support to dx-macro-helpers
Introduces support for the const-serialize 0.7 format in dx-macro-helpers by adding a new dependency and export, as well as a helper function for serialization with layout padding. Updates manganis to use the new helper for serializing assets in the legacy format, simplifying code and improving maintainability.
* Add helper for legacy and current linker sections
Introduces generate_link_sections_with_legacy in dx-macro-helpers to emit both legacy and current linker sections for compatibility. Refactors manganis-macro to use this new helper, reducing duplication and improving maintainability.
* Fix lints
* Fix clippy and doctest
* Refactor asset bundling and allow large enum variant
Refactored Asset::bundled to use Vec<u8> instead of ConstVec for reading volatile slices, simplifying the code and improving compatibility. Added #[allow(clippy::large_enum_variant)] to SymbolData enum to suppress Clippy warnings about large enum variants.
* Update license URLs in README to use angle brackets
Changed license URLs in the README from parentheses to angle brackets for improved formatting and clarity.
* Fix asset deserialization with correct buffer type
Replaces the use of `bytes.read()` with `ConstReadBuffer::new(bytes.as_ref())` for asset deserialization, ensuring compatibility with the expected deserialization API.
* Refactor geolocation and asset handling for clarity
Removed unnecessary clones in geolocation example event handlers to simplify state management. Updated SymbolDataOrAsset to store SymbolData in a Box for improved memory handling and adjusted related logic. Fixed documentation example in geolocation lib to include PermissionState in the import.
* Update geolocation example and permissions usage docs
Removes unused variables in the geolocation example's App function. Updates the permissions crate documentation to reflect new API usage with PermissionBuilder and LocationPrecision.
* Update permissions-macro to use permissions crate
Switched imports and dev-dependency from permissions_core to permissions in permissions-macro. Updated documentation and examples to reflect the new crate usage.
* rollback const-serialize changes
* move items around (doesn't compile)
* convert gelocation plugin to example
* remove dx-macro-helpers
* we're just gonna full-send linker everything
* rollback desktop changes
* remove gradle
* fix most compile?
* fix dioxus vers
* small cleanups
* add claude design docs
* add ffi macro
* remove
* loads but not linking yet
* fix output leak
* a little bit closer but not quite
* improve android code gen
* sheeeeee works!!!
* small tweaks to demo
* replace ios/android plugin with ffi macro entirely
* simplify ffi module
* simplify again
* condense / rip out some stuff from manganis
* remove types form public api
* wip, permissions
* oops I broke it
* I unbroke it
* move arch doc
* remove extra manifest types
* drop bindgen file
* remove permission
* small cleanup
* remove unsafecall mtm thing
* yoink perms
* wire up manifest
* Add deeplinks
* add schema generation
* update schema
* wip....
* fix recurse limit schema generation
* wip, muck around with schema
* add inline dioxus.toml support
* merge bundle config schemas
* claude my man
* Remove cdecl, annotate ffi
* rename design docs
* wip: live activities
* wip: apple plugin bundling
* wip
* get live activities linking properly
* small cleanups
* remove sidecars
* remove widget
* yoink legacy
* cleanup
* more fixups
* wire up more things to dioxus.toml
* fix workspace join
* final cleanups
* fmt
* final bit of clippy
* ci tweak
* update schema
* fmt, doc
* update schema docs
---------
Co-authored-by: Evan Almloff <evanalmloff@gmail.com>
Co-authored-by: Jonathan Kelley <jkelleyrtp@gmail.com>manganis::ffi, full Info.plist/AndroidManifest.xml customization (#4842)1 parent 64cc42e commit eeb60f7
73 files changed
Lines changed: 13761 additions & 330 deletions
File tree
- .github/workflows
- examples/01-app-demos/geolocation-native-plugin
- assets
- src
- android
- src/main
- kotlin/com/dioxus/geolocation
- ios
- plugin
- Sources
- Tests/PluginTests
- widget
- Sources
- plugin
- notes/architecture
- packages
- cli
- assets
- android
- gen/app
- src/main
- ios
- macos
- src
- build
- cli
- config
- serve
- dx-wire-format/src
- manganis
- manganis-core/src
- manganis-macro/src
- manganis
- src
- android
- darwin
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
119 | 119 | | |
120 | 120 | | |
121 | 121 | | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
122 | 141 | | |
123 | 142 | | |
124 | 143 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
33 | | - | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
34 | 36 | | |
35 | 37 | | |
36 | 38 | | |
| |||
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | | - | |
12 | 11 | | |
13 | 12 | | |
14 | 13 | | |
| |||
24 | 23 | | |
25 | 24 | | |
26 | 25 | | |
27 | | - | |
28 | | - | |
29 | | - | |
30 | | - | |
31 | | - | |
32 | 26 | | |
33 | 27 | | |
34 | | - | |
35 | 28 | | |
36 | | - | |
37 | 29 | | |
38 | 30 | | |
39 | 31 | | |
40 | 32 | | |
41 | 33 | | |
42 | 34 | | |
43 | | - | |
44 | | - | |
45 | | - | |
46 | | - | |
47 | 35 | | |
48 | | - | |
49 | | - | |
50 | | - | |
51 | 36 | | |
52 | 37 | | |
53 | 38 | | |
54 | 39 | | |
55 | 40 | | |
56 | 41 | | |
57 | | - | |
58 | | - | |
59 | | - | |
60 | | - | |
61 | | - | |
62 | | - | |
63 | 42 | | |
64 | 43 | | |
65 | 44 | | |
| |||
77 | 56 | | |
78 | 57 | | |
79 | 58 | | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
80 | 62 | | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
81 | 68 | | |
82 | 69 | | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
83 | 75 | | |
84 | 76 | | |
85 | 77 | | |
| |||
106 | 98 | | |
107 | 99 | | |
108 | 100 | | |
| 101 | + | |
109 | 102 | | |
110 | 103 | | |
111 | 104 | | |
| |||
121 | 114 | | |
122 | 115 | | |
123 | 116 | | |
124 | | - | |
125 | | - | |
126 | | - | |
127 | | - | |
128 | | - | |
129 | | - | |
130 | | - | |
131 | | - | |
132 | | - | |
133 | | - | |
134 | | - | |
135 | | - | |
136 | | - | |
137 | | - | |
138 | | - | |
139 | | - | |
140 | | - | |
141 | | - | |
142 | | - | |
143 | | - | |
144 | 117 | | |
145 | 118 | | |
| 119 | + | |
146 | 120 | | |
147 | 121 | | |
148 | 122 | | |
| |||
213 | 187 | | |
214 | 188 | | |
215 | 189 | | |
216 | | - | |
| 190 | + | |
| 191 | + | |
217 | 192 | | |
218 | 193 | | |
219 | 194 | | |
| |||
292 | 267 | | |
293 | 268 | | |
294 | 269 | | |
| 270 | + | |
295 | 271 | | |
296 | 272 | | |
297 | 273 | | |
| |||
Lines changed: 21 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
Lines changed: 27 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
Lines changed: 32 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
Binary file not shown.
Lines changed: 20 additions & 0 deletions
Loading
0 commit comments