简体   繁体   English

Flutter 应用程序在没有静态方法 isAtLeastR 的情况下在 android 10 和 R 上崩溃

[英]Flutter app crashing on android 10 & R with No static method isAtLeastR

I've seen a few issues similar on Stack overflow, but not one that quite relates to the same libraries.我在堆栈溢出上看到了一些类似的问题,但没有一个与相同的库完全相关。

I'm trying to use 2 plugins in flutter flutter_geofence and geolocator我正在尝试在 flutter flutter_geofence 和 geolocator 中使用 2 个插件

They've both been working fine, but since yesterday as soon as of the location play services are called I'm getting the app quit with a stack trace similar to below:它们都运行良好,但从昨天开始,只要调用位置播放服务,我就会退出应用程序,并显示类似于以下的堆栈跟踪:

E/flutter (11478): [ERROR:flutter/shell/platform/android/platform_view_android_jni.cc(39)] java.lang.NoSuchMethodError: No static method isAtLeastR()Z in class Landroidx/core/os/BuildCompat; or its super classes (declaration of 'androidx.core.os.BuildCompat' appears in /data/app/com.mypossibleself.app-FTu9V5QDAKR_ngQmuPzg7Q==/base.apk!classes2.dex)
E/flutter (11478):  at com.google.android.gms.common.util.PlatformVersion.isAtLeastR(com.google.android.gms:play-services-basement@@17.2.1:21)
E/flutter (11478):  at com.google.android.gms.common.api.GoogleApi.zaa(com.google.android.gms:play-services-base@@17.2.1:128)
E/flutter (11478):  at com.google.android.gms.common.api.GoogleApi.<init>(com.google.android.gms:play-services-base@@17.2.1:41)
E/flutter (11478):  at com.google.android.gms.common.api.GoogleApi.<init>(com.google.android.gms:play-services-base@@17.2.1:56)
E/flutter (11478):  at com.google.android.gms.location.FusedLocationProviderClient.<init>(Unknown Source:8)
E/flutter (11478):  at com.google.android.gms.location.LocationServices.getFusedLocationProviderClient(Unknown Source:2)
E/flutter (11478):  at com.baseflow.geolocator.tasks.LocationUpdatesUsingLocationServicesTask.<init>(LocationUpdatesUsingLocationServicesTask.java:29)
E/flutter (11478):  at com.baseflow.geolocator.tasks.TaskFactory.createStreamLocationUpdatesTask(TaskFactory.java:120)
E/flutter (11478):  at com.baseflow.geolocator.GeolocatorPlugin.onListen(GeolocatorPlugin.java:110)
E/flutter (11478):  at io.flutter.plugin.common.EventChannel$IncomingStreamRequestHandler.onListen(EventChannel.java:193)
E/flutter (11478):  at io.flutter.plugin.common.EventChannel$IncomingStreamRequestHandler.onMessage(EventChannel.java:172)
E/flutter (11478):  at io.flutter.embedding.engine.dart.DartMessenger.handleMessageFromDart(DartMessenger.java:93)
E/flutter (11478):  at io.flutter.embedding.engine.FlutterJNI.handlePlatformMessage(FlutterJNI.java:642)
E/flutter (11478):  at android.os.MessageQueue.nativePollOnce(Native Method)
E/flutter (11478):  at android.os.MessageQueue.next(MessageQueue.java:336)
E/flutter (11478):  at android.os.Looper.loop(Looper.java:174)
E/flutter (11478):  at android.app.ActivityThread.main(ActivityThread.java:7356)
E/flutter (11478):  at java.lang.reflect.Method.invoke(Native Method)
E/flutter (11478):  at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:492)
E/flutter (11478):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:930)

So it's complaining about a missing method isAtLeastR所以它抱怨缺少方法 isAtLeastR

Other references I've seen to this mention specific versions of com.google.android.gms:play-services-base causing this, but that it's fixed in com.google.android.gms:play-services-base:17.2.1我见过的其他参考资料提到了 com.google.android.gms:play-services-base 的特定版本导致此问题,但它已在 com.google.android.gms:play-services-base:17.2.1 中修复

Neither of these library implement that package in their build.gradle files so I'm at a loss as to what needs doing to fix this issue.这些库都没有在他们的 build.gradle 文件中实现那个包,所以我不知道需要做什么来解决这个问题。

In the app/build.gradle add com.google.android.gms:play-services-base:17.2.1 this should make libraries use specific version of play-services.在 app/build.gradle 添加com.google.android.gms:play-services-base:17.2.1这应该使库使用特定版本的播放服务。

If it doesn't help, might need to如果它没有帮助,可能需要

configurations.all {
    resolutionStrategy {
        force 'com.google.needed_dependency'
    }
}

https://flutter.dev/docs/development/packages-and-plugins/using-packages#conflict-resolution https://flutter.dev/docs/development/packages-and-plugins/using-packages#conflict-resolution

Edit as per Andrews suggestion:根据安德鲁斯的建议编辑:

17.2.1 doesn't work, but 17.0.0 does. 17.2.1 不起作用,但 17.0.0 起作用。

implementation("com.google.android.gms:play-services-base:17.0.0"){ force = true } 
resolutionStrategy {
            force 'com.google.android.gms:play-services-base:17.1.0' 
        }           
}

This is what solved it for me.这就是为我解决的问题。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM