Skip to content

Commit 09aae06

Browse files
committed
Updates android ntcore
Doesnt support MDNS, and doesnt work in release mode, but it at least does work.
1 parent ad10695 commit 09aae06

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

NetworkTablesCore/Native/LibraryLoader.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ IntPtr ILibraryLoader.GetProcAddress(IntPtr dllHandle, string name)
6262
return result;
6363
}
6464

65-
[DllImport("/system/lib/libdl.so")]
65+
[DllImport("libdl.so")]
6666
private static extern IntPtr dlopen(string fileName, int flags);
6767

68-
[DllImport("/system/lib/libdl.so")]
68+
[DllImport("libdl.so")]
6969
private static extern IntPtr dlsym(IntPtr handle, string symbol);
7070

71-
[DllImport("/system/lib/libdl.so")]
71+
[DllImport("libdl.so")]
7272
private static extern IntPtr dlerror();
7373
}
7474

20 KB
Binary file not shown.

0 commit comments

Comments
 (0)