firebase / quickstart-unity

Firebase Quickstart Samples for Unity
https://firebase.google.com/games
Apache License 2.0
825 stars 428 forks source link

java.lang.NoClassDefFoundError: aewt #861

Closed programming2012 closed 3 years ago

programming2012 commented 3 years ago

[REQUIRED] Please fill in the following fields:

[REQUIRED] Please describe the issue here:

The Build is success. And then I upload to Google Play Console, In Test report , there are two devices has report the error.

Steps to reproduce:

On device Huawei P8 青春版: FATAL EXCEPTION: Firebase-Messaging-Intent-Handle Process: com.google.android.youtube, PID: 25323 java.lang.NoClassDefFoundError: aewt at aewu.b(PG:1) at duc.a(PG:230) at duc.get(PG:247) at aevw.b(PG:1) at dud.al(PG:5) at dud.aw(PG:4) at dud.bg(PG:8) at duc.a(PG:232) at duc.get(PG:247) at afke.a(PG:1) at aeri.b(PG:1) at dud.fv(PG:4) at duc.c(PG:269) at duc.get(PG:247) at amfk.a(PG:1) at eiu.K(PG:5) at dud.fV(PG:7) at duc.d(PG:334) at duc.get(PG:247) at com.google.android.apps.youtube.app.common.notification.FcmMessageListenerService.b(PG:1) at com.google.firebase.messaging.FirebaseMessagingService.g(PG:53) at avgp.run(Unknown Source) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587) at usj.run(PG:2) at java.lang.Thread.run(Thread.java:831)

On device Nokia Nokia 1: FATAL EXCEPTION: Firebase-Messaging-Intent-Handle Process: com.google.android.youtube, PID: 16634 java.lang.NoClassDefFoundError: aewt at aewu.b(PG:1) at duc.a(PG:230) at duc.get(PG:247) at aevw.b(PG:1) at dud.al(PG:5) at dud.aw(PG:4) at dud.bg(PG:8) at duc.a(PG:232) at duc.get(PG:247) at afke.a(PG:1) at aeri.b(PG:1) at dud.fv(PG:4) at duc.c(PG:269) at duc.get(PG:247) at amfk.a(PG:1) at eiu.K(PG:5) at dud.fV(PG:7) at duc.d(PG:334) at duc.get(PG:247) at com.google.android.apps.youtube.app.common.notification.FcmMessageListenerService.b(PG:1) at com.google.firebase.messaging.FirebaseMessagingService.g(PG:53) at avgp.run(Unknown Source:7) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636) at usj.run(PG:2) at java.lang.Thread.run(Thread.java:764) Caused by: java.lang.ExceptionInInitializerError at aewu.b(PG:1) at duc.a(PG:230) at duc.get(PG:247) at aevw.b(PG:1) at dud.al(PG:5) at duc.a(PG:174) at duc.get(PG:247) at aeqv.a(PG:6) at acpw.b(PG:2) at dxe.a(PG:8) at dus.onCreate(PG:41) at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1119) at android.app.ActivityThread.handleBindApplication(ActivityThread.java:5767) at android.app.ActivityThread.-wrap1(Unknown Source:0) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1680) at android.os.Handler.dispatchMessage(Handler.java:106) at android.os.Looper.loop(Looper.java:164) at android.app.ActivityThread.main(ActivityThread.java:6523) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:438) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:857) Caused by: dkp: libelements.so at dks.c(PG:52) at dkq.a(PG:6) at duv.a(Unknown Source:8) at avlz.f(PG:8) at avlz.e(PG:5) at avlz.a(PG:1) at wqq.a(PG:1) at aewt.(PG:1) ... 21 more

Relevant Code:

If i do not use the follow code , only Huawei P8 青春版 get error.

[RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.AfterSceneLoad)] private static void InitFirebase() { Firebase.FirebaseApp.CheckAndFixDependenciesAsync().ContinueWith(task => { var dependencyStatus = task.Result; if (dependencyStatus == Firebase.DependencyStatus.Available) { Firebase.Analytics.FirebaseAnalytics.SetAnalyticsCollectionEnabled(true); } else { string error = System.String.Format( "Could not resolve all Firebase dependencies: {0}", dependencyStatus); Log.Write(error); // Firebase Unity SDK is not safe to use here. } }); }

// TODO(you): code here to reproduce the problem
[logcat_HuaweiP8.txt](https://github.com/firebase/quickstart-unity/files/5506148/logcat_HuaweiP8.txt)
[logcat_NokiaNokia1.txt](https://github.com/firebase/quickstart-unity/files/5506149/logcat_NokiaNokia1.txt)
snorrsi commented 3 years ago

According to Stackoverflow thread this might be related to AndroidManifest.xml having references to non-existing activities or other class references. For me I strongly suggest Facebook SDK is the underlying cause for this after having removed App Invite at some point leaving my AndroidManifest.xml file with now deprecated reference to com.facebook.unity.AppInviteDialogActivity

Check you AndroidManifest and see if you are referencing some non-existing classes.

JMan7777 commented 3 years ago

According to Stackoverflow thread this might be related to AndroidManifest.xml having references to non-existing activities or other class references. For me I strongly suggest Facebook SDK is the underlying cause for this after having removed App Invite at some point leaving my AndroidManifest.xml file with now deprecated reference to com.facebook.unity.AppInviteDialogActivity

Check you AndroidManifest and see if you are referencing some non-existing classes.

We have no changes in the Android Manifest, for sure no references to non existing classes and we are also not using the Facebook SDK.

The issue started on our November 7th built but afterwards some builds have the issue, some don't. Only on Nokia 1 Pre-Launch device.

jyaif commented 3 years ago

My app with zero external dependencies is getting this crash. This is error not specific to any SDK, framework, or game engine you folks are using.

sjmach commented 3 years ago

I also got this error in Pre-Launch report.

11-19 12:38:47.661: I/GAv4-SVC(16829): Google Analytics 203.9.15 is starting up. 11-19 12:38:47.689: E/YouTube(16716): Failed to construct CronetEngine using CronetProvider: App-Packaged-Cronet-Provider, 87.0.4276.2 11-19 12:38:47.689: E/YouTube(16716): java.lang.UnsatisfiedLinkError: Cannot find or unzip library: libcronet.87.0.4276.2.so; Failed to unzip from ABIs: [armeabi-v7a, armeabi]; Did not find lib/armeabi-v7a/libcronet.87.0.4276.2.so in /data/app/com.google.android.youtube-ZQc13bKuehzBe6sDrz1VsQ==/base.apk, Did not find lib/armeabi/libcronet.87.0.4276.2.so in /data/app/com.google.android.youtube-ZQc13bKuehzBe6sDrz1VsQ==/base.apk 11-19 12:38:47.689: E/YouTube(16716): at adsb.a(PG:58) 11-19 12:38:47.689: E/YouTube(16716): at adaw.loadLibrary(PG:1) 11-19 12:38:47.689: E/YouTube(16716): at bofi.loadLibrary(PG:1) 11-19 12:38:47.689: E/YouTube(16716): at org.chromium.net.impl.CronetLibraryLoader.a(PG:6) 11-19 12:38:47.689: E/YouTube(16716): at org.chromium.net.impl.CronetUrlRequestContext.<init>(PG:6) 11-19 12:38:47.689: E/YouTube(16716): at boew.build(PG:2) 11-19 12:38:47.689: E/YouTube(16716): at org.chromium.net.ExperimentalCronetEngine$Builder.build(PG:1) 11-19 12:38:47.689: E/YouTube(16716): at adav.a(Unknown Source:262) 11-19 12:38:47.689: E/YouTube(16716): at adaq.a(PG:10) 11-19 12:38:47.689: E/YouTube(16716): at adax.get(Unknown Source:50) 11-19 12:38:47.689: E/YouTube(16716): at blwu.get(PG:1) 11-19 12:38:47.689: E/YouTube(16716): at blwt.get(PG:2) 11-19 12:38:47.689: E/YouTube(16716): at eio.Y(PG:1) 11-19 12:38:47.689: E/YouTube(16716): at dud.p(PG:1) 11-19 12:38:47.689: E/YouTube(16716): at duc.a(PG:338) 11-19 12:38:47.689: E/YouTube(16716): at duc.get(PG:247) 11-19 12:38:47.689: E/YouTube(16716): at adbk.run(Unknown Source:2) 11-19 12:38:47.689: E/YouTube(16716): at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457) 11-19 12:38:47.689: E/YouTube(16716): at java.util.concurrent.FutureTask.run(FutureTask.java:266) 11-19 12:38:47.689: E/YouTube(16716): at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:301) 11-19 12:38:47.689: E/YouTube(16716): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) 11-19 12:38:47.689: E/YouTube(16716): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636) 11-19 12:38:47.689: E/YouTube(16716): at acto.run(PG:12) 11-19 12:38:47.689: E/YouTube(16716): at java.lang.Thread.run(Thread.java:764) 11-19 12:38:47.689: E/YouTube(16716): Caused by: java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.google.android.youtube-ZQc13bKuehzBe6sDrz1VsQ==/base.apk"],nativeLibraryDirectories=[/data/app/com.google.android.youtube-ZQc13bKuehzBe6sDrz1VsQ==/lib/arm, /system/lib, /vendor/lib]]] couldn't find "libcronet.87.0.4276.2.so" 11-19 12:38:47.689: E/YouTube(16716): at java.lang.Runtime.loadLibrary0(Runtime.java:1011) 11-19 12:38:47.689: E/YouTube(16716): at java.lang.System.loadLibrary(System.java:1657) 11-19 12:38:47.689: E/YouTube(16716): at adsb.a(PG:1) 11-19 12:38:47.689: E/YouTube(16716): ... 23 more 11-19 12:38:47.835: I/Telecom(729): DefaultDialerCache: Refreshing default dialer for user 0: now com.google.android.dialer: DDC.oR@AOQ 11-19 12:38:47.852: W/zygote(16716): Skipping duplicate class check due to unsupported classloader 11-19 12:38:47.861: W/VoiceInteractionManagerService(729): no available voice interaction services found for user 0 11-19 12:38:47.886: I/LauncherAppsCompatVL(1718): onPackageChanged, packageName:com.google.android.music 11-19 12:38:48.027: I/DynamiteModule(16716): Considering local module com.google.android.gms.ads.dynamite:0 and remote module com.google.android.gms.ads.dynamite:21800 11-19 12:38:48.068: I/DynamiteModule(16716): Selected remote version of com.google.android.gms.ads.dynamite, version >= 21800 11-19 12:38:48.148: I/app_process(16857): The ClassLoaderContext is a special shared library. 11-19 12:38:48.319: I/DynamiteModule(16829): Considering local module com.google.android.gms.googlecertificates:6 and remote module com.google.android.gms.googlecertificates:6 11-19 12:38:48.321: I/DynamiteModule(16829): Selected local version of com.google.android.gms.googlecertificates 11-19 12:38:48.338: E/PowerHalWrapper(729): <setInstallationBoost> enable:true 11-19 12:38:48.388: I/app_process(16857): System.exit called, status: 0 11-19 12:38:48.388: I/AndroidRuntime(16857): VM exiting with result code 0. 11-19 12:38:48.459: I/SuperDelight(15777): SuperDelightDownloadSlicingStrategy.getSlices():230 DownloadSlicing#getSlices(): result {slices=[{delight:main_ru_ru_2020081300_1, m:*, fg}, {delight:main_en_gb_2020082400_1, m:*, fg}], last batch=true, sync metadata=false} 11-19 12:38:48.479: I/SP(15777): Syncing delight (2020110900) with slices: [{main_ru_ru_2020081300_1, m:*, fg}, {main_en_gb_2020082400_1, m:*, fg}], metadata: false 11-19 12:38:48.496: I/ADB_SERVICES(326): post waitpid (pid=16857) status=0000 11-19 12:38:48.525: I/ADB_SERVICES(326): service_to_fd shell:pm install-write 1037880736 2_io_sundeep_android__ /data/local/tmp/io.sundeep.android.2.apk 11-19 12:38:48.540: I/WifiService(729): getConnectionInfo uid=10047 11-19 12:38:48.758: I/ActivityManager(729): Start proc 16952:android.process.acore/u0a37 for content provider com.android.providers.contacts/.ContactsProvider2 11-19 12:38:48.758: W/ActivityManager(729): Slow operation: 51ms so far, now at startProcess: starting to update pids map 11-19 12:38:48.758: W/ActivityManager(729): Slow operation: 51ms so far, now at startProcess: done updating pids map 11-19 12:38:48.758: W/ActivityManager(729): Slow operation: 52ms so far, now at startProcess: done starting proc! 11-19 12:38:48.759: W/ActivityManager(729): Slow operation: 53ms so far, now at getContentProviderImpl: after start process 11-19 12:38:48.759: W/ActivityManager(729): Slow operation: 53ms so far, now at getContentProviderImpl: updating data structures 11-19 12:38:48.759: W/ActivityManager(729): Slow operation: 54ms so far, now at getContentProviderImpl: done! 11-19 12:38:48.561: I/WifiService(729): getConnectionInfo uid=10047 11-19 12:38:48.789: W/ProviderHelper(16751): Unknown dynamite feature providerinstaller 11-19 12:38:48.796: I/DynamiteModule(16751): Considering local module com.google.android.gms.providerinstaller:1 and remote module com.google.android.gms.providerinstaller:0 11-19 12:38:48.796: I/DynamiteModule(16751): Selected local version of com.google.android.gms.providerinstaller 11-19 12:38:48.871: I/SP.FP(15777): Fetched file delight:main_ru_ru_2020081300_1.fst-decompress.fetched is found with 2670592 bytes, expected: 6944716, will resume fetching with partial file. 11-19 12:38:48.876: I/qtaguid(16751): Tagging socket -1 with tag 3000040700000000(805307399) for uid -1 failed errno=-9 11-19 12:38:48.876: I/NetworkManagementSocketTagger(16751): tagSocketFd(-1, 805307399, -1) failed with errno-9 11-19 12:38:48.901: W/System(16751): ClassLoader referenced unknown path: system/framework/mediatek-cta.jar 11-19 12:38:48.912: I/System.out(16751): e:java.lang.ClassNotFoundException: com.mediatek.cta.CtaHttp 11-19 12:38:48.939: I/zygote(16952): The ClassLoaderContext is a special shared library. 11-19 12:38:48.953: I/zygote(16952): The ClassLoaderContext is a special shared library. 11-19 12:38:49.015: I/BufferQueueProducer(309): [com.google.android.apps.mtaas.backdrop/com.google.android.apps.mtaas.backdrop.BackdropActivity#0](this:0xa592d000,id:19,api:1,p:15843,c:309) queueBuffer: fps=1.00 dur=1990.12 max=996.33 min=993.79 11-19 12:38:49.022: I/DisplayDevice(309): [Built-in Screen (type:0)] fps:1.007669,dur:1984.78,max:992.49,min:992.29 11-19 12:38:49.109: I/SP(15777): Scheduling: download registered, 0 started, 0 paused, 0 scheduled, 3 pending: delight:main_en_gb_2020082400_1 @ {m:b, fg}, emoji:480abc59ea0f463d5c82d29756d0d5e1 {m:b, bg}, delight:main_ru_ru_2020081300_1 @ {m:b, fg} 11-19 12:38:49.196: I/zygote(16751): Background concurrent copying GC freed 34652(2MB) AllocSpace objects, 28(776KB) LOS objects, 49% free, 3MB/7MB, paused 828us total 587.535ms 11-19 12:38:49.214: I/SP(15777): Scheduling: download registered, 0 started, 0 paused, 0 scheduled, 3 pending: emoji:480abc59ea0f463d5c82d29756d0d5e1 {m:b, bg}, delight:main_ru_ru_2020081300_1 @ {m:b, fg}, delight:main_en_gb_2020082400_1 @ {m:b, fg} 11-19 12:38:49.219: I/vendor.mediatek.hardware.power@1.1-impl(286): querySysInfo cmd:6, param:0 11-19 12:38:49.220: I/powerd(286): [powerd_req] POWER_MSG_QUERY_INFO: cmd:6, param:0 11-19 12:38:49.220: I/libPerfService(286): perfUserGetCapability - cmd:6, id:0, value:15843 11-19 12:38:49.230: I/SP(15777): GC for 'delight' (10) with ttl of 0 ms took 1 ms (0/1/0) 11-19 12:38:49.244: W/mtkmal(317): type=1400 audit(0.0:395): avc: denied { open } for path="/proc/317/net/dev" dev="proc" ino=4026533568 scontext=u:r:mtkmal:s0 tcontext=u:object_r:proc_net:s0 tclass=file permissive=0 11-19 12:38:49.253: I/AbstractSyncResultCallback(15777): AbstractSyncResultCallback.onFailure():36 onFailure(): delight.sync cancelled; expected if new request supersedes pending one. 11-19 12:38:49.253: I/AbstractSyncResultCallback(15777): AbstractSyncResultCallback.onFailure():36 onFailure(): delight.sync cancelled; expected if new request supersedes pending one. 11-19 12:38:49.347: I/ContactsPerf(16952): VoicemailContentProvider.onCreate start 11-19 12:38:49.381: I/ContactsPerf(16952): VoicemailContentProvider.onCreate finish 11-19 12:38:49.396: I/zygote(16829): Waiting for a blocking GC ProfileSaver 11-19 12:38:49.395: I/zygote(16716): The ClassLoaderContext is a special shared library. 11-19 12:38:49.424: I/zygote(16952): The ClassLoaderContext is a special shared library. 11-19 12:38:49.483: I/SignalClusterView(1042): updateDisplayVoLte mShowVoLteIcon: false mNoSimsVisible: true mIsAirplaneMode: false showWfc: false showVolte: false 11-19 12:38:49.484: I/SignalClusterView(1042): updateDisplayVoLte mShowVoLteIcon: false mNoSimsVisible: true mIsAirplaneMode: false showWfc: false showVolte: false 11-19 12:38:49.487: I/zygote(16829): WaitForGcToComplete blocked ProfileSaver on HeapTrim for 91.190ms 11-19 12:38:49.498: I/zygote(16952): The ClassLoaderContext is a special shared library. 11-19 12:38:49.507: I/zygote(16829): WaitForGcToComplete blocked CollectorTransition on ProfileSaver for 14.361ms 11-19 12:38:49.524: I/WifiService(729): getConnectionInfo uid=10047 11-19 12:38:49.609: I/zygote(16716): Rejecting re-init on previously-failed class java.lang.Class<aewt>: java.lang.ExceptionInInitializerError: 11-19 12:38:49.609: I/zygote(16716): at aewt aewu.b(altt, acwg, bnsx, afbc, java.util.Map, java.util.concurrent.Executor) (PG:1) 11-19 12:38:49.609: I/zygote(16716): at java.lang.Object duc.a() (PG:230) 11-19 12:38:49.609: I/zygote(16716): at java.lang.Object duc.get() (PG:247) 11-19 12:38:49.609: I/zygote(16716): at afaa aevw.b(bnsx) (PG:1) 11-19 12:38:49.609: I/zygote(16716): at afaa dud.al() (PG:5) 11-19 12:38:49.609: I/zygote(16716): at java.lang.Object duc.a() (PG:174) 11-19 12:38:49.609: I/zygote(16716): at java.lang.Object duc.get() (PG:247) 11-19 12:38:49.609: I/zygote(16716): at void aeqv.a() (PG:6) 11-19 12:38:49.609: I/zygote(16716): at void acpw.b() (PG:2) 11-19 12:38:49.609: I/zygote(16716): at void dxe.a(egv) (PG:8) 11-19 12:38:49.609: I/zygote(16716): at void dus.onCreate() (PG:41) 11-19 12:38:49.609: I/zygote(16716): at void android.app.Instrumentation.callApplicationOnCreate(android.app.Application) (Instrumentation.java:1119) 11-19 12:38:49.609: I/zygote(16716): at void android.app.ActivityThread.handleBindApplication(android.app.ActivityThread$AppBindData) (ActivityThread.java:5767) 11-19 12:38:49.609: I/zygote(16716): at void android.app.ActivityThread.-wrap1(android.app.ActivityThread, android.app.ActivityThread$AppBindData) (ActivityThread.java:-1) 11-19 12:38:49.609: I/zygote(16716): at void android.app.ActivityThread$H.handleMessage(android.os.Message) (ActivityThread.java:1680) 11-19 12:38:49.609: I/zygote(16716): at void android.os.Handler.dispatchMessage(android.os.Message) (Handler.java:106) 11-19 12:38:49.609: I/zygote(16716): at void android.os.Looper.loop() (Looper.java:164) 11-19 12:38:49.609: I/zygote(16716): at void android.app.ActivityThread.main(java.lang.String[]) (ActivityThread.java:6523) 11-19 12:38:49.609: I/zygote(16716): at java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[]) (Method.java:-2) 11-19 12:38:49.609: I/zygote(16716): at void com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run() (RuntimeInit.java:438) 11-19 12:38:49.609: I/zygote(16716): at void com.android.internal.os.ZygoteInit.main(java.lang.String[]) (ZygoteInit.java:857) 11-19 12:38:49.616: I/PeopleSearchIndexManage(16829): Index version changed from 0 11-19 12:38:49.696: I/PeopleSearchIndexManage(16829): Rebuilding index... 11-19 12:38:49.799: I/System.out(16716): checkUrl: https://youtubei.googleapis.com/generate_204

sjmach commented 3 years ago

This line above Rejecting re-init on previously-failed class java.lang.Class<aewt>: java.lang.ExceptionInInitializerError: is causing the error. Sorry had to give all logs above. I guess if you have a YouTube API dependency (debatable), you might get this error. Saw on a Nokia one device. This app is the issue -> com.google.android.youtube (which is the official youtube app)

cynthiajoan commented 3 years ago

Hi @all

Sorry it takes a while for me to give update. Here's what I'd like to share with the status:

  1. This crash should not block the pre launch process, and developers should be able to upload the apps and get published.
  2. This crash is not directly related to Firebase Unity SDK, we've already received reports from very different channels and products.
  3. Our team in multiple branches are collaborating on solving the issue.

I totally understand it's annoying, but hope you are not getting stuck on development by this. I will give more update when there is further progress.

AhmedElmaydoub commented 3 years ago

Google accepted my app with this error. It wen't live. So it may be something on their side. If I get some more explicit logs in production I will let you know.

My app is now also live so I'd say safe to ignore it.

Hello @mosalex
May i know please when my app will be live on the play store after i submit it ? How much time it usually takes from the date of receiving the pre-launch report ? for example i have submitted the App on 19th this month. Also do i have to solve out all the issues that i have received in the pre-lunch report to be accepted on the play store ? or i can ignore it as long as its not critical ? Thanks in advance

PatrykMCoder commented 3 years ago

@AhmedElmaydoub, they have 7 days for checking your app. For new accounts more. On main page (panel) you have information about checking app and how much time. Check it

MahmoudMabrok commented 3 years ago

@PatrykMCoder I have submitted my app on 1 Nov and still "Under reviewing" and my account is old from 2018

PatrykMCoder commented 3 years ago

@MahmoudMabrok that's no matter. They need more time for checking news apps and updates. Read information form panel

MahmoudMabrok commented 3 years ago

@PatrykMCoder it is not news app just play videos

PatrykMCoder commented 3 years ago

@MahmoudMabrok from: https://support.google.com/googleplay/android-developer/answer/9859751?hl=en&visit_id=637415684804244964-417953870&rd=1 "Whether you're publishing an app for the first time or making an update, your app’s publishing status helps you understand its availability on Google Play."

You just need to wait :) don't worry :)

diegoporfirio commented 3 years ago

Same problem with flutter app after update =/

App won't open and white screen.

Developer-jdantas commented 3 years ago

The issue like a bolt out of the blue! I’m trying publish my first flutter Android app.

NLueg commented 3 years ago

Same with Ionic + Capacitor app ... sad that there is still no fix for this after more than two weeks.

mikezliu commented 3 years ago

Has anyone found a downgraded version of firebase that works?

grolschie commented 3 years ago

Has anyone found a downgraded version of firebase that works?

It's got nothing to do with Firebase. People are getting this without even using Firebase or Youtube. It's a problem with the Pre-Launch reports, not your code, most likely. One person even got the error after uploading a bare bones app.

MahmoudMabrok commented 3 years ago

I have faced this error, And My App is now live on google play. It seems error with pre-launch report.

I did not add any thing just wait till app be live.

LukeDaniel16 commented 3 years ago

Is secure send my app to production even with this error? I need run my official app version (release)

huunhan18pro commented 3 years ago

Any ideal to resolve it. My update still pending for a couple of days.

Johnjson commented 3 years ago

I face the same problem! Does anybody have a workaround? FATAL EXCEPTION: Firebase-Messaging-Intent-Handle Process: com.google.android.youtube, PID: 27466 java.lang.NoClassDefFoundError: aewt at aewu.b(PG:1) at duc.a(PG:230) at duc.get(PG:247) at aevw.b(PG:1) at dud.al(PG:5) at dud.aw(PG:4) at dud.bg(PG:8) at duc.a(PG:232) at duc.get(PG:247) at afke.a(PG:1) at aeri.b(PG:1) at dud.fv(PG:4) at duc.c(PG:269) at duc.get(PG:247) at amfk.a(PG:1) at eiu.K(PG:5) at dud.fV(PG:7) at duc.d(PG:334) at duc.get(PG:247) at com.google.android.apps.youtube.app.common.notification.FcmMessageListenerService.b(PG:1) at com.google.firebase.messaging.FirebaseMessagingService.g(PG:53) at avgp.run(Unknown Source) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587) at usj.run(PG:2) at java.lang.Thread.run(Thread.java:831)

reachvineetjain commented 3 years ago

Same issue on Huawei P8 running SDK 21 and Nokia 1 running SDK 27. No Unity code in my app but using Firebase functionality. Following is the stack trace from Firebase test labs

java.lang.NoClassDefFoundError: aewt FATAL EXCEPTION: Firebase-Messaging-Intent-Handle Process: com.google.android.youtube, PID: 16350 java.lang.NoClassDefFoundError: aewt at aewu.b(PG:1) at duc.a(PG:230) at duc.get(PG:247) at aevw.b(PG:1) at dud.al(PG:5) at dud.aw(PG:4) at dud.bg(PG:8) at duc.a(PG:232) at duc.get(PG:247) at afke.a(PG:1) at aeri.b(PG:1) at dud.fv(PG:4) at duc.c(PG:269) at duc.get(PG:247) at amfk.a(PG:1) at eiu.K(PG:5) at dud.fV(PG:7) at duc.d(PG:334) at duc.get(PG:247) at com.google.android.apps.youtube.app.common.notification.FcmMessageListenerService.b(PG:1) at com.google.firebase.messaging.FirebaseMessagingService.g(PG:53) at avgp.run(Unknown Source:7) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636) at usj.run(PG:2) at java.lang.Thread.run(Thread.java:764) Caused by: java.lang.ExceptionInInitializerError at aewu.b(PG:1) at duc.a(PG:230) at duc.get(PG:247) at aevw.b(PG:1) at dud.al(PG:5) at duc.a(PG:174) at duc.get(PG:247) at aeqv.a(PG:6) at acpw.b(PG:2) at dxe.a(PG:8) at dus.onCreate(PG:41) at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1119) at android.app.ActivityThread.handleBindApplication(ActivityThread.java:5767) at android.app.ActivityThread.-wrap1(Unknown Source:0) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1680) at android.os.Handler.dispatchMessage(Handler.java:106) at android.os.Looper.loop(Looper.java:164) at android.app.ActivityThread.main(ActivityThread.java:6523) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:438) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:857) Caused by: dkp: libelements.so at dks.c(PG:52) at dkq.a(PG:6) at duv.a(Unknown Source:8) at avlz.f(PG:8) at avlz.e(PG:5) at avlz.a(PG:1) at wqq.a(PG:1) at aewt.(PG:1)

IQEQSQ commented 3 years ago

are there any solution? help me!

kdmalviyan commented 3 years ago

Hi all, sorry that you are experiencing this issue and we are looking into what's going on and how to fix this. Please stay tuned.

Have you got this issue resolved? It's acting like a blocker for us.

manohar-octifi commented 3 years ago

In our recent releases we got this issue along with some other crashes, They all were reported in Sentry and Crashlytics and never this one, and Email from the relaunch report never mentioned this as crash

Crashes
Devices without issues 4

So we can safely ignore this

amixel commented 3 years ago

facing same issue

pxblx commented 3 years ago

Same issue here.

googol7 commented 3 years ago

Same here:

Crashes

Devices without issues 4

Devices with issues 2

Device(s) with issues Samsung Galaxy S9 (US) (starqlteue) - Android 8.0 Nokia 1 Android Go (FRT) - Android 8.1

Exceptions java.lang.NoClassDefFoundError: aewt

Bildschirmfoto 2020-12-04 um 11 06 21

oarthursilva commented 3 years ago

same issue here when using react-native multi-platform. min android version +22 max android version 30 devices crashed Nokia Nokia 1 | Android 8.1 (SDK 27)

image

java.lang.NoClassDefFoundError: aewt

FATAL EXCEPTION: Firebase-Messaging-Intent-Handle
Process: com.google.android.youtube, PID: 16133
java.lang.NoClassDefFoundError: aewt
Halil-ibrahim-GUNBULAK commented 3 years ago

I have the same problem. is there any solution?I work flutter and I try many solution but don t work.

atrodriguez88 commented 3 years ago

Same Issuer. Why Play Store(beta) don't publish my apk?

skauss commented 3 years ago

Same problem on Huawei P8 while Google Play Console Pre-Launch test.

FATAL EXCEPTION: Firebase-Messaging-Intent-Handle
Process: com.google.android.youtube, PID: 32466
java.lang.NoClassDefFoundError: aewt
    at aewu.b(PG:1)
    at duc.a(PG:230)
    at duc.get(PG:247)
    at aevw.b(PG:1)
    at dud.al(PG:5)
    at dud.aw(PG:4)
    at dud.bg(PG:8)
    at duc.a(PG:232)
    at duc.get(PG:247)
    at afke.a(PG:1)
    at aeri.b(PG:1)
    at dud.fv(PG:4)
    at duc.c(PG:269)
    at duc.get(PG:247)
    at amfk.a(PG:1)
    at eiu.K(PG:5)
    at dud.fV(PG:7)
    at duc.d(PG:334)
    at duc.get(PG:247)
    at com.google.android.apps.youtube.app.common.notification.FcmMessageListenerService.b(PG:1)
    at com.google.firebase.messaging.FirebaseMessagingService.g(PG:53)
    at avgp.run(Unknown Source)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
    at usj.run(PG:2)
    at java.lang.Thread.run(Thread.java:831)
Elprior commented 3 years ago

Hello,

for the record, same problem here through RN SDK 39, on Nokia 1 (8.1 SDK 27).

This is the excerpt from the phone pane (sorry it's in french). Spécifications de l'appareil Nom du modèle Nokia 1 Fabricant Nokia Version d'Android (SDK) Android 8.1 (SDK 27) Paramètres régionaux en_US Taille de l'écran 480 x 854 Densité d'écran (PPP) 240 RAM (mémoire totale) 1 024 Mo Version OpenGL ES 3.1 ABI ARM_V7 CPU Mediatek MT6737M I have no clue what Firebase or Youtube have to do with it, not even using them :)

Hth, Guillaume

dzelotus commented 3 years ago

Hello, got same problem with Huawei P8

gregfenton commented 3 years ago

Has anyone figured a way around this issue?

I'm building with Expo (SDK38) and I can't see any way to specify a minSdkVersion for Android . . .

Not sure if this is specific to a version of the Firebase client, and maybe just upgrading to a newer release would fix it (which will mean I need to upgrade my Expo SDK, the latest is SDK39 and SKD40 is in beta).

MaloRchrd commented 3 years ago

Same here commenting to get updates

MuhammedKasujja commented 3 years ago

Same problem has someone found the solution

martin-richter-uk commented 3 years ago

Same here!

MuhammedKasujja commented 3 years ago

Can the app be approved or work with this error? I'm really stuck

chinmay2505 commented 3 years ago

Same problem at my end does anyone fixed this issue

frsisalima commented 3 years ago

I also have the same error

gregfenton commented 3 years ago

I have temporarily disabled Pre-Launch check in my project, now waiting to see if the app gets approved for Production release.

Play Console >> Pre-Launch >> Settings >> Pre-launch report preferences (checkbox at the very bottom of the page)

If anyone knows whether this will resolve the release block, or has some other insight to this, please share!

VizMAP commented 3 years ago

Hi all, sorry that you are experiencing this issue and we are looking into what's going on and how to fix this. Please stay tuned.

Same problem. Will this be sorted soon?

VizMAP commented 3 years ago

I have faced this error, And My App is now live on google play. It seems error with pre-launch report.

I did not add any thing just wait till app be live.

MahmoudMabrok - how long to wait for the app to go live?

MuhammedKasujja commented 3 years ago

Same question, how long to wait for the app to go live?

On Sat, 12 Dec 2020 at 11:06, Graeme Brooke notifications@github.com wrote:

I have faced this error, And My App is now live on google play. It seems error with pre-launch report.

I did not add any thing just wait till app be live.

MahmoudMabrok - how long to wait for the app to go live?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/firebase/quickstart-unity/issues/861#issuecomment-743721401, or unsubscribe https://github.com/notifications/unsubscribe-auth/AJWUYXU4C2CCO53K6IBF7KLSUMP7LANCNFSM4TOHLAJA .

ln42 commented 3 years ago

Same problem here, with an app build using Godot Game Engine, failing on Nokia 1 with this exception.

skauss commented 3 years ago

Same problem on Huawei P8 while Google Play Console Pre-Launch test.

FATAL EXCEPTION: Firebase-Messaging-Intent-Handle
Process: com.google.android.youtube, PID: 32466
java.lang.NoClassDefFoundError: aewt
  at aewu.b(PG:1)
  at duc.a(PG:230)
  at duc.get(PG:247)
  at aevw.b(PG:1)
  at dud.al(PG:5)
  at dud.aw(PG:4)
  at dud.bg(PG:8)
  at duc.a(PG:232)
  at duc.get(PG:247)
  at afke.a(PG:1)
  at aeri.b(PG:1)
  at dud.fv(PG:4)
  at duc.c(PG:269)
  at duc.get(PG:247)
  at amfk.a(PG:1)
  at eiu.K(PG:5)
  at dud.fV(PG:7)
  at duc.d(PG:334)
  at duc.get(PG:247)
  at com.google.android.apps.youtube.app.common.notification.FcmMessageListenerService.b(PG:1)
  at com.google.firebase.messaging.FirebaseMessagingService.g(PG:53)
  at avgp.run(Unknown Source)
  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)
  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
  at usj.run(PG:2)
  at java.lang.Thread.run(Thread.java:831)

I release our app 3 day's ago. Up to now 200000 updated without a problem. It looks like is a Google Firebase environment problem. Our app didn't use com.google.android.apps.youtube.app.common.notification.FcmMessageListenerService

stefanotauriello commented 3 years ago

Anyone solved?

jackiedpeacock commented 3 years ago

We have the same error reported in our pre-launch report - will this prevent our app from being released?

FATAL EXCEPTION: Firebase-Messaging-Intent-Handle Process: com.google.android.youtube, PID: 29044 java.lang.NoClassDefFoundError: aewt at aewu.b(PG:1) at duc.a(PG:230) at duc.get(PG:247) at aevw.b(PG:1) at dud.al(PG:5) at dud.aw(PG:4) at dud.bg(PG:8) at duc.a(PG:232) at duc.get(PG:247) at afke.a(PG:1) at aeri.b(PG:1) at dud.fv(PG:4) at duc.c(PG:269) at duc.get(PG:247) at amfk.a(PG:1) at eiu.K(PG:5) at dud.fV(PG:7) at duc.d(PG:334) at duc.get(PG:247) at com.google.android.apps.youtube.app.common.notification.FcmMessageListenerService.b(PG:1) at com.google.firebase.messaging.FirebaseMessagingService.g(PG:53) at avgp.run(Unknown Source) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587) at usj.run(PG:2) at java.lang.Thread.run(Thread.java:831)

gregfenton commented 3 years ago

I temporarily disabled Pre-Launch check in my project. Then 3.5 days after submitting a new build, my app was approved to go to Production.

Play Console >> Pre-Launch >> Settings >> Pre-launch report preferences (checkbox at the very bottom of the page)

If anyone has more insight to this, please share!