Catch fileuriexposedexception for now

This commit is contained in:
anthony restaino 2017-06-05 20:08:53 -04:00
parent 981ecc1696
commit 32d7e509e1

View File

@ -8,6 +8,7 @@ import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.net.Uri;
import android.os.Build;
import android.os.FileUriExposedException;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.util.Log;
@ -75,8 +76,9 @@ public class IntentUtils {
if (mActivity.startActivityIfNeeded(intent, -1)) {
return true;
}
} catch (ActivityNotFoundException ex) {
ex.printStackTrace();
} catch (Exception exception) {
exception.printStackTrace();
// TODO: 6/5/17 fix case where this could throw a FileUriExposedException due to file:// urls
}
return false;
}