Bug填坑笔记
莫…
记念、这一路的 ~~ 跌跌撞撞
展开
-
解决: Attribute meta-data#package_name@value at AndroidManifest.xml:23:13-44 requires a placeholder 错误
完整版错误信息:Merging Errors: Error: Attribute meta-data#package_name@value at AndroidManifest.xml:23:13-44 requires a placeholder substitution but no value for <package_name> is provided. app main manifest (this file), line 22 Error: Validation failed,原创 2020-11-20 15:57:00 · 9374 阅读 · 0 评论 -
解决:SwipeRefreshLayout嵌套RecyclerView时滑动冲突
情况:SwipeRefreshLayout嵌套RecyclerView,当内容超过屏幕下拉,不知道你是要下拉刷新还是下滑,一直认为你是下拉刷新。解决方法:添加如下代码:其中rvHome代表RecyclerView控件、srlHomeRecycleRefresh代表SwipeRefreshLayout控件,如用findViewById,请先findViewById后再添加下面代码。...原创 2020-02-18 10:31:40 · 2812 阅读 · 0 评论 -
实现:AndroidX手动改成Android项目,解决启动总是闪退
Android Studio3.5.2,新建项目都是默认AndroidX,想改成android项目,改动如下所示:一.gradle.properties(Project Properties),改成如下:android.useAndroidX=falseandroid.enableJetifier=false二.build.gradle(Module:app),改成如下:d...原创 2020-01-20 14:33:51 · 4921 阅读 · 1 评论 -
git 命令更改用户名、更新到最新版本
前提下载好git我就是想更改SourceTree下默认的作者用户名(下图是更改后,更改前的忘记截图了)一.更改用户名1.打开Git Bash,输入:(就会出现原先的用户名、邮箱)git config --global --list2.修改,输入:其中xiaomo是你重置的用户名git config --global user.name 'xiaomo'若是出...原创 2019-12-10 13:10:01 · 3325 阅读 · 0 评论 -
解决Jenkins一直用户名或密码错误
创建Jenkins时,当出现登录时一直报:用户名或密码错误(但用户名密码都是对的)解决方案如下:计算机——右键——管理——服务和应用程序——服务——Jenkins——右键——重新启动 重新打开(输入你创建时的Jenkins URL)...原创 2019-12-05 12:49:22 · 6276 阅读 · 0 评论 -
亲测解决:Caused by: java.lang.ClassCastException: com.dj.managesignapp.databinding.ActivityPublicToolbar
完整的错误是: Caused by: java.lang.ClassCastException: com.dj.managesignapp.databinding.ActivityPublicToolbarBindingImpl cannot be cast to com.dj.login.databinding.ActivityPublicToolbarBinding项目中,...原创 2019-11-12 11:08:13 · 1270 阅读 · 0 评论 -
解决:多模块化时运行出多个一样的APP
多模块化时,运行出多个一模一样的APP,如下图:解决方法:删除AndroidManifest.xml中application属性(除了app中的AndroidManifest)原创 2019-11-08 11:06:37 · 497 阅读 · 0 评论 -
亲测解决:The following dependencies on the compile classpath are found to contain annotation processor.
完整的错误信息是:Annotation processors must be explicitly declared now. The following dependencies on the compile classpath are found to contain annotation processor. Please add them to the annotationProc...原创 2019-11-08 10:24:51 · 2421 阅读 · 0 评论 -
极光数据埋点不成功情况之一记录
在看这个bug之前,前提是你已经配置好相关信息,代码也写好了,就是测试时,数据一直为0参考官方https://docs.jiguang.cn//janalytics/client/android_guide/我的情况是,新建一个产品test,数据埋点转移到test上,原先的是可以实现了,现在偏偏不行,已经把appKey换成了test的了,最后发现,test的applicationId没...原创 2019-09-27 13:56:48 · 852 阅读 · 0 评论 -
Android room建表时boolean报错:Cannot find getter for field.
例如:private boolean IsModifyPwd;public boolean isIsModifyPwd() {//自动生成的会是isModifyPwd return IsModifyPwd;}public void setIsModifyPwd(boolean modifyPwd) {//自动生成的会是setModifyPwd IsModifyPwd...原创 2019-09-03 14:47:52 · 3250 阅读 · 0 评论 -
错误:CLEARTEXT communication to www.baidu.com not permitted by network security policy
场景:我在使用OKHTTP3的Get异步请求http://www.baidu.com报错:CLEARTEXT communication to www.baidu.com not permitted by network security policy解决方案:一:确保有网络权限 <uses-permission android:name="android.permi...原创 2019-09-02 17:07:25 · 1809 阅读 · 0 评论 -
Eventbus错误:org.greenrobot.eventbus.EventBusException: Subscriber class
org.greenrobot.eventbus.EventBusException: Subscriber class com.example.module_login.ui.activity.LoginActivity already registered to event class com.example.module_common.eventbus.MessageEventAndroi...原创 2019-09-02 11:08:42 · 5011 阅读 · 1 评论 -
Android Studio的String报XXX. main. prompt getPermission failed"- is not traslated in "de"……
新建module_app_dormitory,在module_app_dormitory的String写入内容后报(如下图):module_apphome.main.promptgetPermissionfailed"-isnottraslatedin"de"(German),"ru"(ussia),"pt"(Portuguese),"en"(English),...原创 2019-08-30 10:14:32 · 167 阅读 · 0 评论 -
Android解决:arouter there is no route match the path三方法
出现arouter there is no route match the path这个错误,大部分是由这三个问题引起的,可能我们都不太注意,导致浪费一些时间在上面,我就是吃了这个亏,针对这个三个问题给出相应的解决方法,下面记录我的三方法(以module_greendao模块为例):方法一:路由路径至少要两级(我的路由路径统一写在了AppRouteConstant里,方便管理)://在A...原创 2019-08-19 11:10:22 · 6347 阅读 · 4 评论