Extract strict mode policy into function

Change-Id: If170b2b05859ebfca7bc91ccc790be5b43a1b772
pull/1050/head
Ben Weiss 2 weeks ago
parent 225f05e697
commit 27a05c416e
No known key found for this signature in database
GPG Key ID: 8424F9C1E763A74C

@ -19,6 +19,7 @@ package com.google.samples.apps.nowinandroid
import android.app.Application import android.app.Application
import android.content.pm.ApplicationInfo import android.content.pm.ApplicationInfo
import android.os.StrictMode import android.os.StrictMode
import android.os.StrictMode.ThreadPolicy.Builder
import coil.ImageLoader import coil.ImageLoader
import coil.ImageLoaderFactory import coil.ImageLoaderFactory
import com.google.samples.apps.nowinandroid.sync.initializers.Sync import com.google.samples.apps.nowinandroid.sync.initializers.Sync
@ -40,12 +41,7 @@ class NiaApplication : Application(), ImageLoaderFactory {
override fun onCreate() { override fun onCreate() {
super.onCreate() super.onCreate()
// Kill NiA if there are main thread policy violations and log the offending call. setStrictModePolicy()
if (isDebuggable()) {
StrictMode.setThreadPolicy(
StrictMode.ThreadPolicy.Builder().detectAll().penaltyLog().penaltyDeath().build(),
)
}
// Initialize Sync; the system responsible for keeping data in the app up to date. // Initialize Sync; the system responsible for keeping data in the app up to date.
Sync.initialize(context = this) Sync.initialize(context = this)
@ -60,4 +56,18 @@ class NiaApplication : Application(), ImageLoaderFactory {
private fun isDebuggable(): Boolean { private fun isDebuggable(): Boolean {
return 0 != applicationInfo.flags and ApplicationInfo.FLAG_DEBUGGABLE return 0 != applicationInfo.flags and ApplicationInfo.FLAG_DEBUGGABLE
} }
/**
* Set a thread policy that detects all potential problems on the main thread, such as network
* and disk access.
*
* If a problem is found, the offending call will be logged and the application will be killed.
*/
private fun setStrictModePolicy() {
if (isDebuggable()) {
StrictMode.setThreadPolicy(
Builder().detectAll().penaltyLog().penaltyDeath().build(),
)
}
}
} }

Loading…
Cancel
Save