解决flutter 错误: 程序包androidx.lifecycle不存在问题
发生于编译时:错误:程序包androidx.lifecycle不存在
先贴一段报错log,让你更加准确的匹配问题所在,对症下药,药,切克闹。
D:\study\flutter\flutter\.pub-cache\hosted\pub.flutter-io.cn\flutter_plugin_android_lifecycle-1.0.8\android\src\main\java\io\flutter\embedding\engine\plugins\lifecycle\FlutterLifecycleAdapter.java:8:错误:程序包androidx.lifecycle不存在
importandroidx.lifecycle.Lifecycle;
^
D:\study\flutter\flutter\.pub-cache\hosted\pub.flutter-io.cn\flutter_plugin_android_lifecycle-1.0.8\android\src\main\java\io\flutter\embedding\engine\plugins\lifecycle\FlutterLifecycleAdapter.java:22:错误:找不到符
号
publicstaticLifecyclegetActivityLifecycle(
符号: 类Lifecycle
位置:类FlutterLifecycleAdapter
2个错误FAILURE:Buildfailedwithanexception.
*Whatwentwrong:
Executionfailedfortask':compileReleaseJavaWithJavac'.
>Compilationfailed;seethecompilererroroutputfordetails.*Try:
Runwith--stacktraceoptiontogetthestacktrace.Runwith--infoor--debugoptiontogetmorelogoutput.Runwith--scantogetfullinsights.*Getmorehelpathttps://help.gradle.org
BUILDFAILEDin1s
Exception:Thepluginflutter_plugin_android_lifecyclecouldnotbebuiltduetotheissueabove.
既然问题已经匹配上了,那就说下我下面的解决实践吧。
上面的问题其实就是Androidx引用库兼容问题,当某些插件升级到一定版本时就会出现这个问题。
首先升级下sdk
实际上到这里就已经解决了,但是可能有些包被墙了,下载不了,导致还是没解决,则需要使用阿里云的代理了
到这里应该是完全解决了,但是不排除个别钉子户,根据githubissure给出的解决方案就是需要升级一下
gradle的版本了
方便复制:
maven{url'https://maven.aliyun.com/repository/google'} maven{url'https://maven.aliyun.com/repository/gradle-plugin'} maven{url'https://maven.aliyun.com/repository/public'} maven{url'https://maven.aliyun.com/repository/jcenter'} distributionUrl=https://services.gradle.org/distributions/gradle-4.10.2-all.zip#手动更新Gradle版本
以上就是我实践出来的解决方法,如果能帮到你,那真的是太好了。
总结
到此这篇关于解决flutter错误:程序包androidx.lifecycle不存在问题的文章就介绍到这了,更多相关程序包androidx.lifecycle不存在内容请搜索毛票票以前的文章或继续浏览下面的相关文章希望大家以后多多支持毛票票!
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。