haoyd
haoyd
I tried to execute the command: decompileAPK.sh -p aa.apk and show the error:decompileAPK.sh: /bin/sh^M: bad interpreter: No such file or directory. How can I fix it ?
js交互时,Native向Js传递一张2M的图片耗时30秒。 
在Activity1和Activity2中都添加了DWebView,在Activity1中可以成功加载页面并显示,而在Activity2中页面却是一版空白,请问这个怎么解决
生成的二维码的bimap,是带有空白边界的,可不可以去掉呢
提示找不到资源
我的依赖库之间会有依赖关系,在执行 AarPackageSize.py 脚本后,提示找不到资源。 并提示以下错误: Android resource linking failed ERROR:/Users/eric/.gradle/caches/transforms-2/files-2.1/144997bd7ca6f1e2801f2c64122ad581/jetified-matrix-trace-canary-2.0.8/res/layout/float_frame_view.xml:18: AAPT: error: resource drawable/ic_launcher (aka io.github.yuweiguocn.aarpackagesize:drawable/ic_launcher) not found. 在 drawable 中添加替代资源是会暂时解决该问题,但项目中存在大量类似情况,有没有办法从根本上解决呢?
I tried to load a webp image,and set round cornor or set centerCrop,but all load failed. These below are my code: ``` Glide.with(this) .load("https://mathiasbynens.be/demo/animated-webp-supported.webp") .apply(RequestOptions().transform(CenterCrop(), RoundedCorners(20))) .into(imageView) ``` or ```...