Firestore Android App -Daten -Ladefehler aufgrund des basierten Fehlers von Broker Android.gms

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Firestore Android App -Daten -Ladefehler aufgrund des basierten Fehlers von Broker Android.gms

by Anonymous » 12 Mar 2025, 13:12

Ich erhalte aus einem unbekannten Grund den folgenden Fehler, und dies hat den Datenladungsprozess verlangsamt. Die Datenlast nach dem Auftauchen dieser Fehler habe ich die JSON -Datei in der Projektstruktur kopiert, stellte sicher, dass die Version korrekt ist, aber der Fehler wird nicht entfernt. Aus diesem Grund wird die App die Daten nicht geladen, egal was Sie < /p>
tun

Code: Select all

 Failed to get service from broker.
java.lang.SecurityException: Unknown calling package name 'com.google.android.gms'.
at android.os.Parcel.createExceptionOrNull(Parcel.java:3242)
at android.os.Parcel.createException(Parcel.java:3226)
at android.os.Parcel.readException(Parcel.java:3209)
at android.os.Parcel.readException(Parcel.java:3151)
at asrr.a(:com.google.android.gms@[email protected] (260400-731361394):36)
at aspy.z(:com.google.android.gms@[email protected] (260400-731361394):143)
at arxh.run(:com.google.android.gms@[email protected] (260400-731361394):54)

< /code>
Die Projektmodul -Gradle -Datei < /p>
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
id 'com.google.gms.google-services'

}

implementation 'com.google.android.gms:play-services-auth:21.3.0'

implementation 'com.google.firebase:firebase-analytics'

// Import the BoM for the Firebase platform
implementation platform('com.google.firebase:firebase-bom:31.0.2')
< /code>
Und dies ist die Projektgradle -Datei, ich habe die genaue Version in der Firebase -Konsole < /p>
kopiertbuildscript {
dependencies {
classpath 'com.google.gms:google-services:4.3.14'
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.4.2' apply false
id 'com.android.library' version '7.4.2' apply false
id 'org.jetbrains.kotlin.android' version '1.8.0' apply false
id 'com.google.gms.google-services' version '4.3.10' apply false
}

Top