pull/2457/head
kunfei 2 years ago
parent b7ffeb930b
commit 830ecde32f
  1. 16
      app/src/main/java/io/legado/app/App.kt

@ -28,10 +28,9 @@ 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.async
import kotlinx.coroutines.coroutineScope import kotlinx.coroutines.delay
import splitties.init.appCtx
import splitties.systemservices.notificationManager import splitties.systemservices.notificationManager
import java.util.concurrent.TimeUnit import java.util.concurrent.TimeUnit
@ -53,7 +52,7 @@ class App : MultiDexApplication() {
registerActivityLifecycleCallbacks(LifecycleHelp) registerActivityLifecycleCallbacks(LifecycleHelp)
defaultSharedPreferences.registerOnSharedPreferenceChangeListener(AppConfig) defaultSharedPreferences.registerOnSharedPreferenceChangeListener(AppConfig)
Coroutine.async { Coroutine.async {
installGmsTlsProviderAsync(this@App).start() async { installGmsTlsProvider(appCtx) }.start()
//初始化封面 //初始化封面
BookCover.toString() BookCover.toString()
//清除过期数据 //清除过期数据
@ -99,9 +98,7 @@ class App : MultiDexApplication() {
* @param context * @param context
* @return * @return
*/ */
private suspend fun installGmsTlsProviderAsync(context: Context): Deferred<Boolean> { private suspend fun installGmsTlsProvider(context: Context) {
return coroutineScope {
async(IO) {
try { try {
val gms = context.createPackageContext( val gms = context.createPackageContext(
"com.google.android.gms", "com.google.android.gms",
@ -111,12 +108,9 @@ class App : MultiDexApplication() {
.loadClass("com.google.android.gms.common.security.ProviderInstallerImpl") .loadClass("com.google.android.gms.common.security.ProviderInstallerImpl")
.getMethod("insertProvider", Context::class.java) .getMethod("insertProvider", Context::class.java)
.invoke(null, gms) .invoke(null, gms)
true delay(1000)
} catch (e: java.lang.Exception) { } catch (e: java.lang.Exception) {
e.printStackTrace() e.printStackTrace()
false
}
}
} }
} }

Loading…
Cancel
Save