@@ -66,16 +66,16 @@ public static partial class JNIEnv {
6666
6767 internal static AndroidValueManager ? AndroidValueManager ;
6868
69- [ DllImport ( "__Internal " , CallingConvention = CallingConvention . Cdecl ) ]
69+ [ DllImport ( "monodroid " , CallingConvention = CallingConvention . Cdecl ) ]
7070 extern static void monodroid_log ( LogLevel level , LogCategories category , string message ) ;
7171
72- [ DllImport ( "__Internal " , CallingConvention = CallingConvention . Cdecl ) ]
72+ [ DllImport ( "monodroid " , CallingConvention = CallingConvention . Cdecl ) ]
7373 internal extern static IntPtr monodroid_timing_start ( string ? message ) ;
7474
75- [ DllImport ( "__Internal " , CallingConvention = CallingConvention . Cdecl ) ]
75+ [ DllImport ( "monodroid " , CallingConvention = CallingConvention . Cdecl ) ]
7676 internal extern static void monodroid_timing_stop ( IntPtr sequence , string ? message ) ;
7777
78- [ DllImport ( "__Internal " , CallingConvention = CallingConvention . Cdecl ) ]
78+ [ DllImport ( "monodroid " , CallingConvention = CallingConvention . Cdecl ) ]
7979 internal extern static void monodroid_free ( IntPtr ptr ) ;
8080
8181 public static IntPtr Handle {
@@ -292,7 +292,7 @@ internal static void PropagateUncaughtException (IntPtr env, IntPtr javaThreadPt
292292 }
293293 }
294294
295- [ DllImport ( "__Internal " , CallingConvention = CallingConvention . Cdecl ) ]
295+ [ DllImport ( "monodroid " , CallingConvention = CallingConvention . Cdecl ) ]
296296 extern static void _monodroid_gc_wait_for_bridge_processing ( ) ;
297297
298298#pragma warning disable CS0649 // Field is never assigned to. This field is assigned from monodroid-glue.cc.
@@ -306,7 +306,7 @@ public static void WaitForBridgeProcessing ()
306306 _monodroid_gc_wait_for_bridge_processing ( ) ;
307307 }
308308
309- [ DllImport ( "__Internal " , CallingConvention = CallingConvention . Cdecl ) ]
309+ [ DllImport ( "monodroid " , CallingConvention = CallingConvention . Cdecl ) ]
310310 extern static IntPtr _monodroid_get_identity_hash_code ( IntPtr env , IntPtr value ) ;
311311
312312 internal static Func < IntPtr , IntPtr > ? IdentityHash ;
@@ -593,25 +593,25 @@ internal static void DeleteRef (IntPtr handle, JniHandleOwnership transfer)
593593 }
594594 }
595595
596- [ DllImport ( "__Internal " , CallingConvention = CallingConvention . Cdecl ) ]
596+ [ DllImport ( "monodroid " , CallingConvention = CallingConvention . Cdecl ) ]
597597 internal static extern int _monodroid_gref_log ( string message ) ;
598598
599- [ DllImport ( "__Internal " , CallingConvention = CallingConvention . Cdecl ) ]
599+ [ DllImport ( "monodroid " , CallingConvention = CallingConvention . Cdecl ) ]
600600 internal static extern int _monodroid_gref_log_new ( IntPtr curHandle , byte curType , IntPtr newHandle , byte newType , string ? threadName , int threadId , [ In ] StringBuilder ? from , int from_writable ) ;
601601
602- [ DllImport ( "__Internal " , CallingConvention = CallingConvention . Cdecl ) ]
602+ [ DllImport ( "monodroid " , CallingConvention = CallingConvention . Cdecl ) ]
603603 internal static extern void _monodroid_gref_log_delete ( IntPtr handle , byte type , string ? threadName , int threadId , [ In ] StringBuilder ? from , int from_writable ) ;
604604
605- [ DllImport ( "__Internal " , CallingConvention = CallingConvention . Cdecl ) ]
605+ [ DllImport ( "monodroid " , CallingConvention = CallingConvention . Cdecl ) ]
606606 internal static extern void _monodroid_weak_gref_new ( IntPtr curHandle , byte curType , IntPtr newHandle , byte newType , string ? threadName , int threadId , [ In ] StringBuilder ? from , int from_writable ) ;
607607
608- [ DllImport ( "__Internal " , CallingConvention = CallingConvention . Cdecl ) ]
608+ [ DllImport ( "monodroid " , CallingConvention = CallingConvention . Cdecl ) ]
609609 internal static extern void _monodroid_weak_gref_delete ( IntPtr handle , byte type , string ? threadName , int threadId , [ In ] StringBuilder ? from , int from_writable ) ;
610610
611- [ DllImport ( "__Internal " , CallingConvention = CallingConvention . Cdecl ) ]
611+ [ DllImport ( "monodroid " , CallingConvention = CallingConvention . Cdecl ) ]
612612 internal static extern int _monodroid_lref_log_new ( int lrefc , IntPtr handle , byte type , string ? threadName , int threadId , [ In ] StringBuilder from , int from_writable ) ;
613613
614- [ DllImport ( "__Internal " , CallingConvention = CallingConvention . Cdecl ) ]
614+ [ DllImport ( "monodroid " , CallingConvention = CallingConvention . Cdecl ) ]
615615 internal static extern void _monodroid_lref_log_delete ( int lrefc , IntPtr handle , byte type , string ? threadName , int threadId , [ In ] StringBuilder from , int from_writable ) ;
616616
617617 public static IntPtr NewGlobalRef ( IntPtr jobject )
0 commit comments