-
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Netdroid class reflection needs some updates from JNetReflector #426
Comments
In https://github.com/masesgroup/netdroid/blob/dd5981392c2fe2da84bd167eb8ce57c268c96b6d/src/net/Netdroid/Generated/Android/Net/Wifi/WifiManager.cs#L409 the code uses |
The code in https://github.com/masesgroup/netdroid/blob/a1b5d1d5d5e8371a0c58da0df5711292bc0ec476/src/net/Netdroid/Generated/Android/Widget/SimpleAdapter.cs#L376 is like public virtual void SetAutofillOptions(params Java.Lang.CharSequence[] arg0)
{
} however the handler in https://github.com/masesgroup/netdroid/blob/a1b5d1d5d5e8371a0c58da0df5711292bc0ec476/src/net/Netdroid/Generated/Android/Widget/SimpleAdapter.cs#L364 is empty: public System.Action<> OnSetAutofillOptions { get; set; } = null; and the method invocation in https://github.com/masesgroup/netdroid/blob/a1b5d1d5d5e8371a0c58da0df5711292bc0ec476/src/net/Netdroid/Generated/Android/Widget/SimpleAdapter.cs#L366 is invalid: void SetAutofillOptionsEventHandler(object sender, CLRListenerEventArgs<CLREventData<Java.Lang.CharSequence[]>> data)
{
var methodToExecute = (OnSetAutofillOptions != null) ? OnSetAutofillOptions : SetAutofillOptions;
methodToExecute.Invoke();
} |
* Removed Iterable and Iterator properties, they become always methods * Update docs * #426 (comment): solved multiple new() and wrong Direct method
Originally posted by @masesdevelopers in masesgroup/netdroid#8 (review)
See the comments and code changes
The text was updated successfully, but these errors were encountered: