Android Bug
Mr.Louis
二十岁的生活方式,决定了你三十岁的打开方式。
展开
-
关于小狐狸版本的AS,编译报错 repository ‘Google‘ was added by build file ‘build.gradle问题完美解决
错误关联:Failed to resolve: 、 repository ‘Google’ was added by build file 'build.gradle首先我导入一个库后编译项目遇到这样的问题:出现Failed to resolve: com.github.chrisbanes:PhotoView的问题,你们的工程可能报各种库的问题,但开头都是Failed to resolve:com.github.xxxx.xxxx则应在项目的 build.gradle 添加如下: ma.原创 2021-10-21 10:51:40 · 2070 阅读 · 0 评论 -
关于Android 的ViewBinding和<merge>标签冲突的问题解决
我们在使用include的时候给被引入的布局添加一个id,如下所示:<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orienta原创 2021-10-07 15:59:37 · 1765 阅读 · 0 评论 -
Android Room 数据库常见报错missing database
常见错误1:D:\AndroidProjectsDemo\JetpeckTest\app\build\tmp\kapt3\stubs\debug\com\example\jetpecktest\room\BookDao.java:15: 错误: There is a problem with the query: [SQLITE_ERROR] SQL error or missing database (no such table: BookEntity)public abstract java.u原创 2021-10-05 03:01:37 · 2409 阅读 · 0 评论 -
Android关于EventBus报错解决方法its super classes have no public methods with the @Subscribe
关联EventBus、RxBus、androidStudio、Android异常Subscriber class xxx and its super classes have no public methods with the @Subscribe annotation分析从源码上看,是因为没有注解,反射得到为空。我的代码里是这样写的:一个注册,一个反注册,发现报错,然后一些blog博主说是啥?R8压缩问题之后我开始进行修改,有以下两种方案:方案一关闭R8压缩minifyEnable原创 2021-07-29 14:17:05 · 2107 阅读 · 0 评论