Skip to content

Commit

Permalink
Merge pull request #2188 from AndreMiras/feature/share_java_python_util
Browse files Browse the repository at this point in the history
Share PythonUtil.java between bootstraps
  • Loading branch information
AndreMiras committed May 10, 2020
2 parents 7b27577 + 53722ed commit eeed13c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 79 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,13 @@ protected static ArrayList<String> getLibraries(File libsDir) {
ArrayList<String> libsList = new ArrayList<String>();
addLibraryIfExists(libsList, "sqlite3", libsDir);
addLibraryIfExists(libsList, "ffi", libsDir);
addLibraryIfExists(libsList, "png16", libsDir);
addLibraryIfExists(libsList, "ssl.*", libsDir);
addLibraryIfExists(libsList, "crypto.*", libsDir);
addLibraryIfExists(libsList, "SDL2", libsDir);
addLibraryIfExists(libsList, "SDL2_image", libsDir);
addLibraryIfExists(libsList, "SDL2_mixer", libsDir);
addLibraryIfExists(libsList, "SDL2_ttf", libsDir);
libsList.add("python3.5m");
libsList.add("python3.6m");
libsList.add("python3.7m");
Expand Down Expand Up @@ -70,5 +75,5 @@ public static void loadLibraries(File filesDir, File libsDir) {
}

Log.v(TAG, "Loaded everything!");
}
}
}

This file was deleted.

0 comments on commit eeed13c

Please sign in to comment.