mirror of
https://github.com/TrianguloY/LightningLauncher.git
synced 2025-01-13 20:01:34 +01:00
Fix sharing of backup files
This commit is contained in:
parent
e4a191e59d
commit
c175f6d140
2 changed files with 5 additions and 2 deletions
|
@ -22,6 +22,7 @@ import net.pierrox.lightning_launcher.data.Item;
|
|||
import net.pierrox.lightning_launcher.data.Page;
|
||||
import net.pierrox.lightning_launcher.engine.LightningEngine;
|
||||
import net.pierrox.lightning_launcher.data.Utils;
|
||||
import net.pierrox.lightning_launcher.util.FileProvider;
|
||||
import net.pierrox.lightning_launcher_extreme.R;
|
||||
|
||||
import org.json.JSONObject;
|
||||
|
@ -297,8 +298,10 @@ public class BackupRestore extends ResourceWrapperActivity implements View.OnCli
|
|||
case 3:
|
||||
Intent shareIntent = new Intent();
|
||||
shareIntent.setAction(Intent.ACTION_SEND);
|
||||
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(FileUtils.LL_EXT_DIR +"/"+mArchiveName)));
|
||||
Uri uri = FileProvider.getUriForFile(new File(FileUtils.LL_EXT_DIR +"/"+mArchiveName));
|
||||
shareIntent.putExtra(Intent.EXTRA_STREAM, uri);
|
||||
shareIntent.setType("application/zip");
|
||||
shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
|
||||
startActivity(Intent.createChooser(shareIntent, getResources().getText(R.string.br_s)));
|
||||
break;
|
||||
case 4:
|
||||
|
|
|
@ -50,7 +50,7 @@ public class FileProvider extends ContentProvider {
|
|||
@Override
|
||||
public ParcelFileDescriptor openFile(Uri uri, String mode) throws FileNotFoundException {
|
||||
String path = uri.getPath().substring(1);
|
||||
if(!path.startsWith(FileUtils.LL_TMP_DIR.getAbsolutePath())) {
|
||||
if(!path.startsWith(FileUtils.LL_TMP_DIR.getAbsolutePath()) && !path.startsWith(FileUtils.LL_EXT_DIR.getAbsolutePath())) {
|
||||
throw new IllegalArgumentException();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue