Android: fix crash on latest nightlies (non-Play Store)

This commit is contained in:
Braden Farmer 2021-01-07 10:48:54 -07:00 committed by m4xw
parent 130617a327
commit 43b1bbed46

View File

@ -545,6 +545,8 @@ public class RetroActivityCommon extends NativeActivity
* are installed to. * are installed to.
*/ */
private void updateSymlinks() { private void updateSymlinks() {
if(!isPlayStoreBuild()) return;
traverseFilesystem(getFilesDir()); traverseFilesystem(getFilesDir());
traverseFilesystem(new File(getApplicationInfo().nativeLibraryDir)); traverseFilesystem(new File(getApplicationInfo().nativeLibraryDir));
} }