Android: Don't call toast methods off UI thread

This commit is contained in:
Connor McLaughlin
2021-01-21 13:56:10 +10:00
parent 4433197665
commit 3c3bfdea93
2 changed files with 9 additions and 23 deletions

View File

@ -25,14 +25,6 @@ public class AndroidHostInterface {
this.mContext = context;
}
public void reportError(String message) {
Toast.makeText(mContext, message, Toast.LENGTH_LONG).show();
}
public void reportMessage(String message) {
Toast.makeText(mContext, message, Toast.LENGTH_SHORT).show();
}
public InputStream openAssetStream(String path) {
try {
return mContext.getAssets().open(path, AssetManager.ACCESS_STREAMING);