Problems专题:编译环境
Problems专题:编译环境
0x01 java.lang.AssertionError: Could not delete caches dir
CreateProcess error=206, El nombre del archivo o la extensión es demasiado largo
Caused by: java.lang.AssertionError: Could not delete caches dir YourProjectPath\build\kotlin\compileDebugTestingKotlin
临时解决
打开任务管理器,结束 java.exe 或者 OpenJDK Platform Binary
降级 Android Studio
Notice: This happens with the newer AndroidStudio 4.2.x.
Google hasn’t provide us a fix, so you’ll need to downgrade to an older version which works for you. 4.1.3 seems to be working fine.
0x02 Please close other application using ADB:Monitor, DDMS, Eclip
Warning:debug info can be unavailable. Please close other application using ADB:Monitor, DDMS, Eclipse.
方案一:
1 | adb usb |
方案二:
打开任务管理器,结束adb.exe进程。
方案三:
重启 adb 服务
1 | adb kill-server |
0x03 能安装apk却无法查看log[真机偶现]
能安装apk却无法在Logcat查看log,即使重启Android studio,重启adb服务都无法解决。最后通过重启手机搞定
0x04 platform-tools/api/api-versions.xml java.io.IOException: Stream closed
在 android studio 更新到 v2020.3.1 后遇到
1 | cannot load api descriptions from ../Android/android-sdk/platform-tools/api/api-versions.xml java.io.IOException: Stream closed |
问题的原因与类SdkUtils (请参阅the source file)相关。SdkUtils类具有对文件platform-tools/api/api-versions.xml的硬引用,但是在最新的平台工具(31.0.3)中,该文件不再存在。
从platforms/android-31/data/api-versions.xml复制文件到platform-tools/api/api-versions.xml。
如果是CI编译,可以尝试以下脚本:
1 | steps: |
0x05 Installed Build Tools revision 31.0.0 is corrupted. Remove and install again using the SDK Manager.
升级android sdk api 版本到31,适配android 12 ,遇到这个问题。当前开发环境:
android studio 版本: 2020.3.1
AGP 版本: 4.1.2 (classpath "com.android.tools.build:gradle:4.1.2"
)
SDK 版本
1 | android { |
SDK Manager更新对应版本都正常下载,编译过程出现异常
1 | Installed Build Tools revision 31.0.0 is corrupted. Remove and install again using the SDK Manager. |
是 Build Tools 升级之后,DX 变成了 D8。而 AGP 4.x 的版本使用的还是DX。
解决的方案:
1 | change below to your Android SDK path |
将 C:\Users\user\AppData\Local\Android\Sdk\build-tools\31.0.0\d8.bat
改为 dx.bat
将 C:\Users\user\AppData\Local\Android\Sdk\build-tools\31.0.0\lib\d8.jar
改为 dx.jar
PS:也可以尝试升级 AGP 到 7.x
Problems专题:编译环境
https://denchopen.github.io/blog/2021/06/20/Problems专题之编译环境/