Move executables out of the way where android expects native libraries to be.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4236 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
2023-03-19 13:12:51 +00:00
parent 2dc2d9ebf6
commit 33a037e0ea
2 changed files with 6 additions and 6 deletions

View File

@ -54,7 +54,7 @@ public class MainActivity extends Activity {
try {
ZipInputStream zip = new ZipInputStream(new BufferedInputStream(new FileInputStream(getPackageResourcePath().toString())));
ZipEntry entry = null;
String lookup = String.format("lib/%s/tildefriends", arch);
String lookup = String.format("bin/%s/tildefriends", arch);
Log.w("tildefriends", "Looking for " + lookup);
while ((entry = zip.getNextEntry()) != null) {
if (entry.getName().equals(lookup)) {