-
Notifications
You must be signed in to change notification settings - Fork 59
Troubleshooting Android Bindings Issues
Jonathan Pobst edited this page Apr 2, 2021
·
24 revisions
- Helpful Tools - Some helpful tools for investigating. **DIAGNOSTIC MSBUILD LOG IS A MUST**
- Glossary - Some common terms used with binding projects.
- Understanding the Binding Pipeline - Understanding the various steps performed in the binding process can help determine where issues are occurring and how to fix them.
-
Metadata Cheat Sheet - Quick reference for commonly used
metadata
constructs.
- Missing Types or Members - Expected Java types or members are missing from the managed bindings.
-
Covariant Return Types - Class - These generally manifest as a
CS0534
compilation error. -
Covariant Return Types - Interface - These generally manifest as a
CS0738
compilation error. -
Duplicate EventArgs Classes - These generally manifest as
CS0111
orCS0112
compilation errors referencingEventArgs
.