You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Java.Interop] Use Class.forName() as fallback to load Java classes (#1326)
Fixes: #23
Context: dotnet/android@aba2726
Context: b4d44e4
Context: xamarin/monodroid@ed984a3
Context: dotnet/android#7616
Commit b4d44e4 noted:
> Android is..."special", in that not all threads get the same
> ClassLoader behavior. Specifically, *managed* threads --
> System.Threading.Thread instances -- get a different ClassLoader than
> the main/UI thread on Android. (Untested, but the ClassLoader *may*
> behave sanely if you use a java.lang.Thread instance instead. But who
> wants to use java.lang.Thread instances...?)
dotnet/android#7616 provided additional context: `JNIEnv::FindClass()`
behavior *is* tied to the thread that calls it, and one of the knock-on
effects is that `Java.Lang.JavaSystem.LoadLibrary("MyLib")` doesn't
work properly when invoked from a new `System.Threading.Thread` thread.
(This is still the case, by the way.)
Which brings us to xamarin/mondroid@ed984a3a, which updated then
Xamarin.Android to use
[`Class.forName(String name, boolean initialize, ClassLoader loader)`][0]
instead of [`ClassLoader.loadClass(String)`][1], because the "real"
JDK cannot use `ClassLoader.loadClass(String)` to load array types:
Class c1 = Class.forName("[Ljava.lang.String;"); // works
Class c2 = ClassLoader.getSystemClassLoader()
.loadClass("[Ljava.lang.String;"); // throws java.lang.ClassNotFoundException
Class c3 = Class.forName("[I"); // works; array of int
Class c4 = ClassLoader.getSystemClassLoader()
.loadClass("[I"); // throws java.lang.ClassNotFoundException
Using `ClassLoader.loadClass(String)` to load array types works on
Android, presumably as an undocumented implementation detail, but as
xamarin/monodroid@ed984a3a was trying to get things working within
the (now dead) Android Designer -- which ran using a Desktop JDK --
Android-specific extensions were not available.
Update `JniEnvironment.Types` to use `Class.forName(String)` instead
of `ClassLoader.loadClass(String)` to load Java classes, as a fallback
for when `JNIEnv::FindClass()` fails to find the class.
`[Obsolete]` the `JniRuntime.CreationOptions.ClassLoader_LoadClass_id`
property as it is no longer used.
[0]: https://developer.android.com/reference/java/lang/Class#forName(java.lang.String,%20boolean,%20java.lang.ClassLoader)
[1]: https://developer.android.com/reference/java/lang/ClassLoader#loadClass(java.lang.String)
0 commit comments