我刚刚将Android项目更新为
implementation 'androidx.appcompat:appcompat:1.2.0'
来自
implementation 'androidx.appcompat:appcompat:1.1.0'
突然,应用程序运行缓慢。
有关该项目的信息:
已弃用的AppCompatDelegate.attachBaseContext()。如果要调用或重写此方法,请改用AppCompatDelegate.attachBaseContext2()。
在所有活动中,我都致电:
override fun attachBaseContext(newBase: Context?) {
super.attachBaseContext(ViewPumpContextWrapper.wrap(Restring.wrapContext(newBase ?: this)))
}
但是,删除它似乎并不能解决问题。
有人有类似的问题吗?