blob: 0b4ee5a3e9f927a343f71f705e72d4c904895171 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package de.thedevstack.conversationsplus.providers;
import android.net.Uri;
import android.support.v4.content.FileProvider;
import de.thedevstack.conversationsplus.ConversationsPlusApplication;
import eu.siacs.conversations.entities.DownloadableFile;
/**
* Created by lookshe on 27.03.16.
*/
public class ConversationsPlusFileProvider extends FileProvider {
private static final String SCHEME = "content";
private static final String AUTHORITY = "de.thedevstack.conversationsplus";
public static Uri createUriForPrivateFile(DownloadableFile file) {
return FileProvider.getUriForFile(ConversationsPlusApplication.getAppContext(), AUTHORITY, file);
}
}
|