You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Allow to mmap FName blocks on iOS and Android platforms
#rb Chris.Babcock, denys.mentiei, Peter.Sauerbrei [CL 36794493 by sebastian werema in 5.5 branch]
This commit is contained in:
@@ -4873,6 +4873,16 @@ public class GameActivity extends $${gameActivitySuperClass}$$ implements Surfac
|
||||
return appPackageName;
|
||||
}
|
||||
|
||||
public String AndroidThunkJava_GetCacheDir()
|
||||
{
|
||||
try {
|
||||
return getApplicationContext().getCacheDir().getPath();
|
||||
} catch (Exception e) {
|
||||
Log.debug("getCacheDir failed: " + e.toString());
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
public boolean AndroidThunkJava_IsMusicActive()
|
||||
{
|
||||
AudioManager audioManager = (AudioManager)getThisActivity().getSystemService(Context.AUDIO_SERVICE);
|
||||
|
||||
Reference in New Issue
Block a user