升级到androidx.appcompat:appcompat:1.2.0问题

时间:2020-08-28 07:49:15

标签: android android-appcompat

我刚刚将Android项目更新为

implementation 'androidx.appcompat:appcompat:1.2.0'

来自

implementation 'androidx.appcompat:appcompat:1.1.0'

突然,应用程序运行缓慢。

有关该项目的信息:

Android documentation中说:

已弃用的AppCompatDelegate.attachBaseContext()。如果要调用或重写此方法,请改用AppCompatDelegate.attachBaseContext2()。

在所有活动中,我都致电:

override fun attachBaseContext(newBase: Context?) {
super.attachBaseContext(ViewPumpContextWrapper.wrap(Restring.wrapContext(newBase ?: this)))

}

但是,删除它似乎并不能解决问题。

有人有类似的问题吗?

0 个答案:

没有答案