Execution failed for task ‘:keyboard_utils:compileDebugKotlin‘.

这篇具有很好参考价值的文章主要介绍了Execution failed for task ‘:keyboard_utils:compileDebugKotlin‘.。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

Execution failed for task ‘:keyboard_utils:compileDebugKotlin’.

这个错误是keyboard_utils依赖报错。
这个问题在keyboard_utils github项目的issues 有记载Project does not run with new Flutter 2.10.0
详细错误信息:

e: /Users/andreifufylev/development/flutter/.pub-cache/hosted/pub.dartlang.org/keyboard_utils-1.3.3/android/src/main/kotlin/br/com/keyboard_utils/manager/KeyboardUtils.kt: (56, 40): Using 'max(): T?' is an error. Use maxOrNull instead.

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':keyboard_utils:compileDebugKotlin'.
> Compilation error. See log for more details

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

* Get more help at https://help.gradle.org

BUILD FAILED in 24s
Exception: Gradle task assembleDevelopmentDebug failed with exit code 1

解决方式:

1.建议使用1.3.4版本。
2.从写该依赖的handleKeyboard()方法:文章来源地址https://www.toymoban.com/news/detail-741950.html

override fun handleKeyboard() {
        keyboardSessionTimer = object : CountDownTimer(150, 1) {
            override fun onFinish() {
                keyboardSessionHeights.maxOrNull().let {
                    if (it!! > 0 && lastKeyboardHeight!! != it!!) {

到了这里,关于Execution failed for task ‘:keyboard_utils:compileDebugKotlin‘.的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • Android 开发 错误 Execution failed for task ‘:app:processDebugMainManifest‘.

    在配置文件AndroidManifest.xml中添加代码android:exported=“true” 关于android:exported=\\\"true\\\"的解释: Android相关属性的介绍:android:exported = true 在Activity中该属性用来标示:当前Activity是否可以被另一个Application的组件启动:true允许被启动;false不允许被启动。 android:exported 是Android中的四

    2024年02月10日
    浏览(51)
  • 打包apk时出现Execution failed for task ‘:app:lintVitalRelease

    程序可以正常运行,但是打包apk的时候报Execution failed for task ‘:app:lintVitalRelease导致打包失败,原因是执行lintVitalRelease失败了,存在错误。解决办法:在app模块的build.gradle的Android里面添加如下代码:  

    2024年02月11日
    浏览(39)
  • 关于Android Studio编译时提示Execution failed for task ‘:xxx:compileDebugJavaWithJavac‘

    在项目首次导入编译时,总是会出现一些比较难排除的问题,特别是在提示中无法直接找到原因: 这里我使用的是Android Studio 2021.3.1 故在Terminal输入 这里的提示是项目的gradle缺少gradle-wrapper.properties文件,我的解决方案是: 从其他项目中拷贝一份gradle-wrapper.properties

    2024年02月11日
    浏览(82)
  • 解决kotlin写Android项目编译报Execution failed for task ‘:app:kaptDebugKotlin‘.异常

    解决kotlin写Android项目编译报Execution failed for task ‘:app:kaptDebugKotlin‘.异常 遇到的报错标题也是app:kaptDebugKotlin,具体报错信息不是,也可以试一下这个方法。 尝试办法:将kapt改为annotationProcesser,并同步项目 ,我的项目使用了databinding和arouter,原本是这样引入的: 上面这样写

    2024年02月05日
    浏览(51)
  • 【已解决】Task :app:compileDebugKotlin FAILED

    给android项目改App ID,修改了模块名后,编译出现了这个问题。 1.尝试了统一kotlin版本,Android Studio Tools - Kotlin - Configure Kotlin Plugin Updates    查看目前Kotlin版本,以及在项目找kotlin-version(不同项目展现方式不同,一般是在build.gradle),将项目的Kotlin版本改为Android Studio上的版

    2024年02月13日
    浏览(42)
  • React Native报错Task :app:compileDebugKotlin FAILED

    \\\"react-native\\\": \\\"0.73.1\\\", \\\"react-native-safe-area-context\\\": \\\"^4.8.2\\\", distributionUrl=https://services.gradle.org/distributions/gradle-8.3-all.zip 安装react-native-safe-area-context后一直编辑不通过,查了好久,终于找到原因: Task :app:compileDebugKotlin FAILED Deprecated Gradle features were used in this build, making it incompatible w

    2024年01月23日
    浏览(38)
  • ‘compileDebugJavaWithJavac‘ task (current target is 1.8) and ‘compileDebugKotlin‘ task (current targ

    \\\'compileDebugJavaWithJavac\\\' task (current target is 1.8) and \\\'compileDebugKotlin\\\' task (current target is 17) jvm target compatibility should be set to the same Java version. 出现这种情况是因为你电脑安装的jdk版本是1.8,而你Android studio设置为17,这就要求你在电脑端升级安装17版本的jdk,否则就编译不了。 就是下

    2024年02月22日
    浏览(51)
  • docker failed to create task for container: failed to create shim task: OCI runtime create failed:

    根据CentOS安装docker指南,启动hello-world时报错,提示信息中提到了 OCI runtime ,根本原因是 runc did not terminate successfully 参考【错误解决】docker找不到runc:failed to create shim: OCI runtime create failed: unable to retrieve OCI runtime,这个问题跟 runc 有关,查看docker版本的确没有runc信息 查看

    2024年02月14日
    浏览(59)
  • docker: Error response from daemon: failed to create task for container: failed to create shim task:

    我的系统是ubuntu22.04,装的docker版本是24.0.5,但是在下载镜像之后去加载时报了这个错误 docker: Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: invalid rootfs: not an absolute path, or a symlink: unknown. ERRO[0000] error waiting for conta

    2024年02月09日
    浏览(47)
  • UE中创建异步任务编辑器工具(Editor Utility Tasks)

    在UE中我们往往需要执行一些编辑器下的异步任务,例如批量生成AO贴图、批量合并静态模型等,又不想阻碍主线程,因此可以使用Editor Utility Tasks直接创建UE编辑器下的异步任务。 如果你不太了解UE编辑器工具,可以参考这篇文章: https://blog.csdn.net/grayrail/article/details/1313097

    2024年02月10日
    浏览(94)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包