Skip to content

Commit

Permalink
fix: Correctly define android file extension as ".so" to fix jaring (#68
Browse files Browse the repository at this point in the history
)
  • Loading branch information
Berstanio authored Jun 12, 2024
1 parent c2a35ef commit 70fb086
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public String getLibExtension () {
if (this == Os.Windows) return "dll";
if (this == Os.Linux) return "so";
if (this == Os.MacOsX) return "dylib";
if (this == Os.Android) return "so";
return "";
}
}

0 comments on commit 70fb086

Please sign in to comment.