Disable file exposure detection to allow sharing from the local cache ¯\_(ツ)_/¯

This commit is contained in:
len 2017-09-10 12:03:44 +02:00
parent 0b85760939
commit 69cbbd5811

View File

@ -3,6 +3,7 @@ package eu.kanade.tachiyomi
import android.app.Application
import android.content.Context
import android.content.res.Configuration
import android.os.StrictMode
import android.support.multidex.MultiDex
import com.evernote.android.job.JobManager
import eu.kanade.tachiyomi.data.backup.BackupCreatorJob
@ -32,6 +33,9 @@ open class App : Application() {
if (BuildConfig.DEBUG) Timber.plant(Timber.DebugTree())
// Disable file uri exposure detection
StrictMode.setVmPolicy(StrictMode.VmPolicy.Builder().build())
setupAcra()
setupJobManager()