Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't use string constants for class names.
This allows the SimpleWidget sample to run as expected when built with Xamarin.Android 5.0+. Strings containing type names are bad. They break refactoring. They also cause things to break when we change the names of the generated Android Callable Wrappers: http://developer.xamarin.com/releases/android/xamarin.android_5/xamarin.android_5.1/#Android_Callable_Wrapper_Naming As is often the case, Don't Do That™. Specifically, work *with* type system, and use actual types instead of strings.
- Loading branch information