优化
This commit is contained in:
@@ -28,6 +28,10 @@ import io.legado.app.help.http.cronet.CronetLoader
|
|||||||
import io.legado.app.model.BookCover
|
import io.legado.app.model.BookCover
|
||||||
import io.legado.app.utils.defaultSharedPreferences
|
import io.legado.app.utils.defaultSharedPreferences
|
||||||
import io.legado.app.utils.getPrefBoolean
|
import io.legado.app.utils.getPrefBoolean
|
||||||
|
import kotlinx.coroutines.Deferred
|
||||||
|
import kotlinx.coroutines.Dispatchers.IO
|
||||||
|
import kotlinx.coroutines.async
|
||||||
|
import kotlinx.coroutines.coroutineScope
|
||||||
import splitties.systemservices.notificationManager
|
import splitties.systemservices.notificationManager
|
||||||
import java.util.concurrent.TimeUnit
|
import java.util.concurrent.TimeUnit
|
||||||
|
|
||||||
@@ -49,7 +53,7 @@ class App : MultiDexApplication() {
|
|||||||
registerActivityLifecycleCallbacks(LifecycleHelp)
|
registerActivityLifecycleCallbacks(LifecycleHelp)
|
||||||
defaultSharedPreferences.registerOnSharedPreferenceChangeListener(AppConfig)
|
defaultSharedPreferences.registerOnSharedPreferenceChangeListener(AppConfig)
|
||||||
Coroutine.async {
|
Coroutine.async {
|
||||||
installGmsTlsProvider(this@App)
|
installGmsTlsProviderAsync(this@App).start()
|
||||||
//初始化封面
|
//初始化封面
|
||||||
BookCover.toString()
|
BookCover.toString()
|
||||||
//清除过期数据
|
//清除过期数据
|
||||||
@@ -95,8 +99,10 @@ class App : MultiDexApplication() {
|
|||||||
* @param context
|
* @param context
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
private suspend fun installGmsTlsProvider(context: Context): Boolean {
|
private suspend fun installGmsTlsProviderAsync(context: Context): Deferred<Boolean> {
|
||||||
return try {
|
return coroutineScope {
|
||||||
|
async(IO) {
|
||||||
|
try {
|
||||||
val gms = context.createPackageContext(
|
val gms = context.createPackageContext(
|
||||||
"com.google.android.gms",
|
"com.google.android.gms",
|
||||||
CONTEXT_INCLUDE_CODE or CONTEXT_IGNORE_SECURITY
|
CONTEXT_INCLUDE_CODE or CONTEXT_IGNORE_SECURITY
|
||||||
@@ -111,6 +117,8 @@ class App : MultiDexApplication() {
|
|||||||
false
|
false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 创建通知ID
|
* 创建通知ID
|
||||||
|
|||||||
Reference in New Issue
Block a user