From ab4c00b43991020b7b4a4c175fedc19beab345b9 Mon Sep 17 00:00:00 2001 From: ZTz <36158219+ZTzTopia@users.noreply.github.com> Date: Sun, 12 Dec 2021 00:43:39 +0700 Subject: [PATCH] Fix check extracted native library file --- app/src/main/java/com/gt/launcher/Launch.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/gt/launcher/Launch.java b/app/src/main/java/com/gt/launcher/Launch.java index 7f7aa67..9bda416 100644 --- a/app/src/main/java/com/gt/launcher/Launch.java +++ b/app/src/main/java/com/gt/launcher/Launch.java @@ -42,7 +42,7 @@ public void onCreate(@Nullable Bundle savedInstanceState) { File libraryFile = new File(libraryPath + "/libgrowtopia.so"); if (!libraryFile.exists()) { libraryPath = getExtractedLibraryPath(); - libraryFile = new File(libraryPath); + libraryFile = new File(libraryPath + "/libgrowtopia.so"); } if (libraryFile.exists()) {