Skip to content
This repository has been archived by the owner on Mar 7, 2024. It is now read-only.

Commit

Permalink
Fix check extracted native library file
Browse files Browse the repository at this point in the history
  • Loading branch information
ZTzTopia authored Dec 11, 2021
1 parent badaa47 commit ab4c00b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/com/gt/launcher/Launch.java
Original file line number Diff line number Diff line change
Expand Up @@ -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()) {
Expand Down

0 comments on commit ab4c00b

Please sign in to comment.