How can you keep classes unmangled? #4
-
Xamarin.Android seems to mangle my classes with a random meaningless CRC64 value: While your classes in What did you do? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
(XamarinPosed is simple, but not that simple 😉) |
Beta Was this translation helpful? Give feedback.
-
I actually did add the Thanks. |
Beta Was this translation helpful? Give feedback.
(XamarinPosed is simple, but not that simple 😉)
There might be several ways to prevent such renaming. To find such magics, you have to dig into Xamarin.Android internals.
The method I used, is to make that class an Android Callable Wrapper . ACW won't be renamed, and if you put a nested class in a ACW, it won't be renamed, either.