모듈 설명자 클래스를 로드하지 못했습니다.클래스 "com.google.android.gms.dynamite.descriptors.com .google"을 찾을 수 없습니다.화력 기지auth.ModuleDescriptor"
그래서 저는 신입이고 Firebase 9.0.0을 사용하여 이메일/비밀번호 인증을 구현하려고 했습니다. 그래서 활동은 등록 작업 또는 로그인 작업을 수행합니다.
로그인 작업이 원활하게 실행되고 Firebase 콘솔에서 업데이트를 볼 수 있습니다.하지만 새로운 사용자를 등록하려고 하면 이 오류가 발생합니다.
E/DynamiteModule: Failed to load module descriptor class: Didn't find class "com.google.android.gms.dynamite.descriptors.com.google.firebase.auth.ModuleDescri ptor" on path: DexPathList[[zip file "/data/app/deventree.com.thetimothyinitiative- 2/base.apk"],nativeLibraryDirectories=[/vendor/lib, /system/lib]]
내 장치에서 Google Play 서비스 버전 9.0.83을 실행하고 있습니다.
Android Studio 2.1.1(Google Play 서비스 SDK 설치)콘솔에서도 로그인 방법을 활성화했습니다.
내가 뭘 놓쳤는지 모르겠어요!
파이어베이스 팀의 알폰소입니다.
오류를 무시할 수 있습니다.E/DynamiteModule: Failed to load module descriptor class: Didn't find class "com.google.android.gms.dynamite.descriptors.com.google.firebase.auth.ModuleDescriptor"
안타깝게도 Play Services에 디버깅이 아닌 E/로 기록되는 버그가 있습니다.우리는 다음 릴리스에서 수정 사항을 배포할 것입니다.
이는 응용 프로그램의 동작에 영향을 미치지 않습니다. 문제가 있는 경우 다른 곳에서 원인을 찾으십시오.
입력하는 비밀번호가 6자 이상이어야 합니다! :)
나는 이것을auth=FirebaseAuth.getInstance();
그것은 나에게 같은 오류를 주었고 이 코드를 추가한 후에 그 오류를 제거하는 데 도움이 되었습니다.
현재 사용자를 인스턴스화하지 않고 쓰기만 하면 이 문제가 발생합니다.
Firebase Auth.getInstance();
언급URL : https://stackoverflow.com/questions/37370258/failed-to-load-module-descriptor-class-didnt-find-class-com-google-android-gm
'programing' 카테고리의 다른 글
mongodb 집계 쿼리에서 $regex를 $match 내에서 사용하는 방법 (0) | 2023.06.19 |
---|---|
cx_Oracle: distutils.errors.디퓨틸스SetupError: Oracle 포함 파일을 찾을 수 없습니다. (0) | 2023.06.19 |
Python의 상대적인 위치에서 파일 열기 (0) | 2023.06.19 |
TypeScript npm 모듈에서 유형을 내보내는 방법 (0) | 2023.06.19 |
문자열 Python에서 a: 앞에 모든 것을 가져오려면 어떻게 해야 합니까? (0) | 2023.06.19 |