Skip to content

Commit f4f08e6

Browse files
Fixed a bug with Python version selection and library loading.
1 parent 1fc0269 commit f4f08e6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • pythonforandroid/bootstraps/common/build/src/main/java/org/kivy/android

pythonforandroid/bootstraps/common/build/src/main/java/org/kivy/android/PythonUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ protected static ArrayList<String> getLibraries(File libsDir) {
5959
addLibraryIfExists(libsList, name, libsDir);
6060
}
6161

62-
for (int v = 14; v >= 5; v--) {
62+
for (int v = 5; v <= 3.14; v++) {
6363
libsList.add("python3." + v + (v <= 7 ? "m" : ""));
6464
}
6565

0 commit comments

Comments
 (0)