add class data to generated dex
This commit is contained in:
parent
409663ca19
commit
bb9f5a94aa
12 changed files with 474 additions and 41 deletions
|
|
@ -74,7 +74,7 @@ pub enum MethodHandleType {
|
|||
}
|
||||
|
||||
/// <https://source.android.com/docs/core/runtime/dex-format#class-data-item>
|
||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||
#[derive(Debug, Clone, PartialEq, Eq, Default)]
|
||||
pub struct ClassDataItem {
|
||||
// pub static_fields_size: Uleb128,
|
||||
// pub instance_fields_size: Uleb128,
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
pub mod annotation;
|
||||
pub mod array;
|
||||
pub mod constant;
|
||||
pub mod consts;
|
||||
pub mod core;
|
||||
pub mod debug;
|
||||
pub mod file_reader;
|
||||
|
|
@ -12,7 +12,7 @@ pub use androscalpel_serializer_derive::*;
|
|||
pub use crate::core::*;
|
||||
pub use annotation::*;
|
||||
pub use array::*;
|
||||
pub use constant::*;
|
||||
pub use consts::*;
|
||||
pub use debug::*;
|
||||
pub use items::*;
|
||||
pub use value::*;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue