|
|
|
@ -8,6 +8,8 @@ import android.support.annotation.NonNull;
@@ -8,6 +8,8 @@ import android.support.annotation.NonNull;
|
|
|
|
|
import android.support.annotation.Nullable; |
|
|
|
|
import android.util.Log; |
|
|
|
|
|
|
|
|
|
import com.anthonycr.bonsai.Schedulers; |
|
|
|
|
|
|
|
|
|
import java.io.BufferedReader; |
|
|
|
|
import java.io.File; |
|
|
|
|
import java.io.FileInputStream; |
|
|
|
@ -38,7 +40,7 @@ public class FileUtils {
@@ -38,7 +40,7 @@ public class FileUtils {
|
|
|
|
|
* @param name the name of the file to store the bundle in. |
|
|
|
|
*/ |
|
|
|
|
public static void writeBundleToStorage(final @NonNull Application app, final Bundle bundle, final @NonNull String name) { |
|
|
|
|
BrowserApp.getIOThread().execute(new Runnable() { |
|
|
|
|
Schedulers.io().execute(new Runnable() { |
|
|
|
|
@Override |
|
|
|
|
public void run() { |
|
|
|
|
File outputFile = new File(app.getFilesDir(), name); |
|
|
|
|