Android开发问题集

1. 项目拉取下来,开启小飞机,更新远程仓库aar失败

解决方案:先关闭科学上网小飞机,然后注释掉项目中gradle.properties最后配置的代理信息,重新make项目,待其它远程库aar拉取完成后,再次打开小飞机解开刚才注释掉的代理信息,make就成功了

2. org.gradle.internal.resolve.ArtifactResolveException: Could not download kotlin-compiler-embeddable-1.6.10-RC.jar

Caused by: org.gradle.api.resources.ResourceException: Could not get resource 'http://maven.aliyun.com/nexus/content/groups/public/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.6.10-RC/kotlin-compiler-embeddable-1.6.10-RC.jar'
问题原因:新创建module是kotlin版本的,会自动创建最新版本1.6.10kt插件,可能是资源不那么优,下载该插件及其缓慢,报错后,建议修改自己之前项目用的kt版本
解决方案:根目录build.gradle修改kotlin-gradle-plugin版本,改成之前可运行项目的kt版本即可

3. Execution failed for task ':app:processDebugGoogleServices'.

No matching client found for package name 'com.jitu.station.malaysia'
Execution failed for task ':app:kaptDebugKotlin'
解决方案:
(1)、对比gradle版本 和 kotlin版本是否一致
(2)、看一下项目的jdk版本是否是11 一般默认是选择的jdk8 把jdk版本换成jdk11编译一下(步骤:Settings-Build,Execution,Deployment-Build Tools-Gradle)
(3)、如果集成google相关的功能,配置文件google-services.json中的包名 也就得修改成项目环境对应的

4. Invocation failed Unexpected end of file from server

java.lang.RuntimeException: Invocation failed Unexpected end of file from server
Caused by: java.net.SocketException: Unexpected end of file from server
由于服务器文件意外结束导致调用失败
解决方案:
AS-Settings-Git-Use credential helper勾选该选项 应用即可

5. javax.net.ssl.SSLHandshakeException: Remote host closed connection during handshake

http://127.0.0.1:1080/pac?hash=aP9esBdy1Q_7XzF69LAkKQ2&secret=UrdRGSbv_v7MIZ5MO3sRXFinh-N9wmuop4jMwTo3w201

6. loading style failed: java.security.cert.CertPathValidatorException: Trust anchor for certification path not found.

<network-security-config>
<base-config cleartextTrafficPermitted="true">

<trust-anchors>

<certificates src="system" />

<certificates src="user" />

</trust-anchors>
</base-config>
</network-security-config>

Execution failed for task ':app:processDebugMainManifest'.

Manifest merger failed with multiple errors, see logs

hideSoftInputFromWindow ignore mServedView == null or mServedView.getWindowToken() != windowToken, mServedView :androidx.appcompat.widget.AppCompatEditText{45e7489 VFED..CL. .F...... 0,0-296,161 #7f090182 app:id/etInputWidth}

7.

android:inputType="textPassword"
android:imeOptions="actionDone"
android:singleLine="true"

imeOptions 配合 singleLine一起使用生效 其它不生效

8. // 不混淆 Hawk 过滤掉包名 com.orhanobut.hawk

-keep class com.orhanobut.hawk.** { *; }
java.lang.AssertionError: illegal type variable reference
at libcore.reflect.TypeVariableImpl.resolve(TypeVariableImpl.java:111)
at libcore.reflect.TypeVariableImpl.getGenericDeclaration(TypeVariableImpl.java:125)
at libcore.reflect.TypeVariableImpl.hashCode(TypeVariableImpl.java:47)
at java.util.Arrays.hashCode(Arrays.java:4071)
at com.google.gson.internal.GsonTypesParameterizedTypeImpl.hashCode(GsonTypes.java:1) at com.google.gson.reflect.TypeToken.<init>(TypeToken.java:4) at m8.j.<init>(HawkConverter.java:1) at m8.m.a(HawkConverter.java:24) at m8.d.get(DefaultHawkFacade.java:34) at m8.g.b(Hawk.java:1) at com.jitu.station.malaysia.ui.search.SearchOrderActivity.init(SearchOrderActivity.kt:28) at com.jitu.android.common.base.JTBaseViewBindActivity.onCreate(JTBaseViewBindActivity.kt:15) at com.jitu.station.malaysia.base.MalayBaseActivity.onCreate(MalayBaseActivity.kt:3) at android.app.Activity.performCreate(Activity.java:7894) at android.app.Activity.performCreate(Activity.java:7883) at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1353) at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3655) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3835) at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:101) at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135) at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95) at android.app.ActivityThreadH.handleMessage(ActivityThread.java:2291)
at android.os.Handler.dispatchMessage(Handler.java:107)
at android.os.Looper.loop(Looper.java:230)
at android.app.ActivityThread.main(ActivityThread.java:8024)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:526)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1034)

9. java.lang.IllegalStateException: Fragment XXX not attached to an activity

判断页面是否被添加 isAdded
初始化的数据,可以延迟加载(关键词修饰:lateinit),在页面加载后,记得初始化所需数据

10. Installed Build Tools revision 31.0.0 is corrupted. Remove and install again using the SDK Manager

解决方案:
(1). Sdk\build-tools\31.0.0 - 将 d8.bat 重命名为 dx.bat
(2). Sdk\build-tools\31.0.0\lib - 将 d8.jar 重命名为 dx.jar

11. DSBridge

定义的异步或同步方法中,携带参数的需要类型Any指定

12. android11 系统 蓝牙适配、获取存储权限

13. 标签/别名设置相关问题:

https://go48pg.yuque.com/docs/share/b0c4a80d-635d-4f5b-99fd-c9dec8edd038#ybAXn
集成极光推送错误码常见问题:https://docs.jiguang.cn/jpush/client/Android/android_code
错误码:6011 短时间内操作过于频繁-10s 内设置 tag/alias/property 大于 10 次,或 10s 内设置手机号码大于 3 次
错误码:6021、6022 tags或alias-操作正在进行中暂时不能进行其他 tags或alias 操作,多次调用 tags或alias 相关的 API,请在获取到上一次调用回调后再做下一次操作;在未取到回调的情况下,等待 20 秒后再做下一次操作
错误码:6017、6027 别名上限,最多允许绑定 10 个设备,一般情况下会在测试账号上面出现此问题,但是也难免业务测试时遇到,解决方案,就是后台暴露一个检测别名绑定设备数量、清除别名的相关接口,具体的可以查看极光后台对接文档
别名相关操作:https://docs.jiguang.cn/jpush/server/push/rest_api_v3_device
查询别名:https://docs.jiguang.cn/jpush/server/push/rest_api_v3_device#%E6%9F%A5%E8%AF%A2%E5%88%AB%E5%90%8D
删除设备的别名:https://docs.jiguang.cn/jpush/server/push/rest_api_v3_device#%E5%88%A0%E9%99%A4%E8%AE%BE%E5%A4%87%E7%9A%84%E5%88%AB%E5%90%8D

14. com.alibaba.android.arouter.exception.HandlerException ARouter::Parameter is invalid!

源码中:
if (TextUtils.isEmpty(path)) {
    throw new HandlerException(Consts.TAG + "Parameter is invalid!");
}
private String extractGroup(String path) {
    if (TextUtils.isEmpty(path) || !path.startsWith("/")) {
        throw new HandlerException(Consts.TAG + "Extract the default group failed, the path must be start with '/' and contain more than 2 '/'!");
    }

    try {
        String defaultGroup = path.substring(1, path.indexOf("/", 1));
        if (TextUtils.isEmpty(defaultGroup)) {
            throw new HandlerException(Consts.TAG + "Extract the default group failed! There's nothing between 2 '/'!");
        } else {
            return defaultGroup;
        }
    } catch (Exception e) {
        logger.warning(Consts.TAG, "Failed to extract default group! " + e.getMessage());
        return null;
    }
}

路由path为空,或没有指定两层路径
解决方案:路由path为空检测,是否是包含两个“/”

15. Room cannot verify the data integrity. Looks like you've changed schema but forgot to update the version number. You can simply fix this by increasing the version number.

出现上面两个问题的原因及解决方案:
(1). 新增表字段或者新增表,数据库没有升级版本号(99%是此原因)
(2). 项目组件化时,两个module创建了相同的两个数据库导致,修改下其中一个库名
(3). 还有个自欺欺人的解决方案,是网上一片文章(https://blog.51cto.com/xxx)说的,应用卸载重装(上去就想给他一个大嘴巴子唉-_-唉)

16.

Execution failed for task ':app:kaptDebugKotlin'.
> A failure occurred while executing org.jetbrains.kotlin.gradle.internal.KaptWithoutKotlincTask$KaptExecutionWorkAction
   > java.lang.reflect.InvocationTargetException (no error message)
* or
> Task :app:kaptUatKotlin FAILED

Execution failed for task ':app:kaptUatKotlin'.
> A failure occurred while executing org.jetbrains.kotlin.gradle.internal.KaptWithoutKotlincTask$KaptExecutionWorkAction
   > java.lang.reflect.InvocationTargetException (no error message)

* Try:
Run with --info or --debug option to get more log output. Run with --scan to get full insights.

解决方案:
方法:一般涉及的库(Room、ARouter同时确认下,自己项目是kt还是java 确认相应的引入方式),接着确认项目Gradle JDK版本,使用11版本,然后Invalidate Caches重启AS

17. class com.bumptech.glide.load.engine.GlideException: Failed to load resource

解决方案:
(1). 先确认加载图片的地址是否正确,浏览器是否可打开,如果浏览器可以预览,再次检查链接前后是否有空格
(2). 加载的图片是否有请求头相关参数的校验,如果有的话,加载图片时携带服务器指定的请求头参数
(3). 如果是低系统手机可以加载http链接,9.0开始的系统默认是不支持http,需要支持给application添加属性usesCleartextTraffic="true"

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
禁止转载,如需转载请通过简信或评论联系作者。
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342

推荐阅读更多精彩内容