aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/providers/ConversationsPlusFileProvider.java
blob: 577a5dd46edd8438a5d4d896c1f5ba89100ef30b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package de.thedevstack.conversationsplus.providers;

import android.net.Uri;
import android.support.v4.content.FileProvider;

import de.thedevstack.conversationsplus.BuildConfig;
import de.thedevstack.conversationsplus.ConversationsPlusApplication;
import de.thedevstack.conversationsplus.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 = BuildConfig.APPLICATION_ID;

    public static Uri createUriForPrivateFile(DownloadableFile file) {
        return FileProvider.getUriForFile(ConversationsPlusApplication.getAppContext(), AUTHORITY, file);
    }
}