Notice: 函数 WP_Scripts::localize 的调用方法不正确$l10n 参数必须是一个数组。若要将任意数据传递给脚本,请改用 wp_add_inline_script() 函数。 请查阅调试 WordPress来获取更多信息。 (这个消息是在 5.7.0 版本添加的。) in /data/www/appblog/wp-includes/functions.php on line 6131

Glide 4.x找不到AppGlideModule

翻阅Release日志:https://github.com/bumptech/glide/releases

查看Glide 4.5.0 Release更新日志:Glide must be compiled against API 27

也就是说:Glide 4.5.0及以上版本不能使用API 27及以上版本的SDK编译

  • 如果非得使用API 27及以上版本编译,可以使用Glide 4.4.0版本
  • 如果非得使用Glide最新版本,可以使用API 26进行编译
dependencies {
  implementation "com.github.bumptech.glide:glide:4.4.0"
  annotationProcessor 'com.github.bumptech.glide:compiler:4.4.0'
}

参考:http://bumptech.github.io/glide/doc/download-setup.html#android-sdk-requirements

Android SDK Requirements

Minimum SDK Version – Glide requires a minimum SDK version of 14 (Ice Cream Sandwich) or higher.

Compile SDK Version – Glide must be compiled against SDK version 27 (Oreo MR1) or higher.

Support Library Version – Glide uses support library version 27.

If you need or would prefer to use a different version of the support library you should exclude "com.android.support" from your Glide dependency in your build.gradle file. For example, if you’d like to use v26 of the support library:

dependencies {
  implementation ("com.github.bumptech.glide:glide:4.7.1") {
    exclude group: "com.android.support"
  }
  implementation "com.android.support:support-fragment:26.1.0"
}
上一篇 Android组件化开发之动态权限请求封装
下一篇 解决OKHttp报java.lang.IllegalStateException closed