gpt4 book ai didi

android - 运行检测测试时 Cloud Firestore (22.1.0) 出现内部错误

转载 作者:行者123 更新时间:2023-12-05 00:03:30 49 4
gpt4 key购买 nike

我收到来自 Cloud Firestore 的内部错误消息。当我运行这个测试时,应用程序正在从 Firebase 获取项目列表。这需要一段时间。与此同时,测试停止。
每个库都更新到最新版本。这个SO thread没有给出令人满意的答案。该错误仅在运行测试时出现,实际应用程序正常。

@InternalCoroutinesApi
@ExperimentalCoroutinesApi
@RunWith(AndroidJUnit4::class)
class HomeTest {

@get:Rule
var reportHelper: ReportHelper? = Factory.getReportHelper()

@get:Rule
var activityRule = ActivityScenarioRule(MainActivity::class.java)

// Executes tasks in a synchronous [TaskScheduler]
@get:Rule
var syncTaskExecutorRule = SyncTaskExecutorRule()

@Before
fun goToHomeScreen() {
onView(withId(R.id.navigation_home)).perform(ViewActions.click())
}

@Test
fun scrollToNextVideo() {
onView(withId(R.id.recycler)).perform(swipeUp())
}

@After
fun TearDown() {
reportHelper?.label("Stopping App")
}
}
build.gradle(应用级别):
android {
configurations.all() { configuration ->
// exclude group: "com.google.protobuf", module: "protobuf-javalite"

exclude group: "com.google.protobuf", module: "protobuf-java"
// exclude group: "io.grpc", module: "grpc-protobuf-lite" // tried this, but App fails to compile
}
dependencies {
implementation "com.google.firebase:firebase-firestore-ktx:23.0.0"
implementation "com.google.firebase:firebase-database-ktx:20.0.0"
implementation "com.google.firebase:firebase-storage-ktx:20.0.0"
implementation "com.firebaseui:firebase-ui-storage:4.3.2"
}
这是我的 dependencies.txt
堆栈跟踪:
Testing started at 18:40 ...

02/23 18:40:39: Launching 'HomeTest' on Samsung SM-A515F.
App restarts successfully without requiring a re-install.
Running tests

$ adb shell am instrument -w -m --no-window-animation -e debug false -e class 'eu.theappfactory.someapp.data.ui.home.HomeTest' eu.theappfactory.someapp.acc.test/androidx.test.runner.AndroidJUnitRunner
Connected to process 981 on device 'samsung-sm_a515f-R58N52ZCJZL'.

Started running tests

java.lang.RuntimeException: Internal error in Cloud Firestore (22.1.0).
at com.google.firebase.firestore.util.AsyncQueue.lambda$panic$3(AsyncQueue.java:534)
at com.google.firebase.firestore.util.AsyncQueue$$Lambda$3.run(Unknown Source:2)
at android.os.Handler.handleCallback(Handler.java:883)
at android.os.Handler.dispatchMessage(Handler.java:100)
at android.os.Looper.loop(Looper.java:237)
at android.app.ActivityThread.main(ActivityThread.java:8167)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:496)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1100)
Caused by: java.lang.NoSuchMethodError: No static method registerDefaultInstance(Ljava/lang/Class;Lcom/google/protobuf/GeneratedMessageLite;)V in class Lcom/google/protobuf/GeneratedMessageLite; or its super classes (declaration of 'com.google.protobuf.GeneratedMessageLite' appears in /data/app/eu.theappfactory.someapp.acc.test-K43eWkkKbA6iBOHgciWAfA==/base.apk)
at com.google.firestore.v1.ListenRequest.<clinit>(ListenRequest.java:849)
at com.google.firestore.v1.ListenRequest.getDefaultInstance(ListenRequest.java:854)
at com.google.firestore.v1.FirestoreGrpc.getListenMethod(FirestoreGrpc.java:396)
at com.google.firebase.firestore.remote.WatchStream.<init>(WatchStream.java:61)
at com.google.firebase.firestore.remote.Datastore.createWatchStream(Datastore.java:115)
at com.google.firebase.firestore.remote.RemoteStore.<init>(RemoteStore.java:167)
at com.google.firebase.firestore.core.MemoryComponentProvider.createRemoteStore(MemoryComponentProvider.java:72)
at com.google.firebase.firestore.core.ComponentProvider.initialize(ComponentProvider.java:135)
at com.google.firebase.firestore.core.FirestoreClient.initialize(FirestoreClient.java:258)
at com.google.firebase.firestore.core.FirestoreClient.lambda$new$0(FirestoreClient.java:105)
at com.google.firebase.firestore.core.FirestoreClient$$Lambda$1.run(Unknown Source:8)
at com.google.firebase.firestore.util.AsyncQueue.lambda$enqueue$2(AsyncQueue.java:436)
at com.google.firebase.firestore.util.AsyncQueue$$Lambda$2.call(Unknown Source:2)
at com.google.firebase.firestore.util.AsyncQueue$SynchronizedShutdownAwareExecutor.lambda$executeAndReportResult$1(AsyncQueue.java:322)
at com.google.firebase.firestore.util.AsyncQueue$SynchronizedShutdownAwareExecutor$$Lambda$2.run(Unknown Source:4)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:462)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:301)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
at com.google.firebase.firestore.util.AsyncQueue$SynchronizedShutdownAwareExecutor$DelayedStartFactory.run(AsyncQueue.java:229)
at java.lang.Thread.run(Thread.java:919)

Test running failed: Process crashed.
Tests ran to completion.
tried this ,不起作用。
this also没用。

最佳答案

TL;DR: protobuf-javalite是你可能想要建立的。
这是 known issue并且很有可能是由 build.gradle 的某些部分引起的,你已经隐瞒了。我只能说不包括模块 protobuf-javalite剥离静态方法registerDefaultInstance ;因此应该排除protobuf-java反而:

configurations.all() { configuration ->
// exclude group: "com.google.protobuf", module: "protobuf-javalite"
exclude group: "com.google.protobuf", module: "protobuf-java"
}

使用 Kotlin 依赖项也可能有意义,但这不应该是原因:
implementation 'com.google.firebase:firebase-firestore-ktx:22.1.2'
要检查实际打包的内容: ./gradlew :app:dependencies > dependencies.txt .

关于android - 运行检测测试时 Cloud Firestore (22.1.0) 出现内部错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66338416/

49 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com