I have two activities in android, in main I press a button to play and the gameplayactivity begins. The gameplayacitivity holds the jmesurfaceview xml tag along with other viewcomponents. I follow the initialization and splash screen as is jme3-Simple-Examples/MainActivity.java at 7c486357b692c23b84eb6acba2d12fa032a0a17b · Monkey-Droid/jme3-Simple-Examples · GitHub.
For lower api my game is loading fine but for higher api the activity just revert back to mainactivity. I check log in OnrendererComplete but there is no log output hence its not triggering oncomplete listener.
This means to me that the game activity isn’t starting, which may be from your code…
On higher android versions, you need to explicitly expose the activity or the intent or a service to be able to start it.
Try setting the exported
property to true in your android activity tag in the AndroidManifest.xml
:
EDIT:
Here is an example:
Activity is started has I have Log message just before startrenderer in oncreate() method of activity. Here is log for reference
D/JME: After renderer start
I/JmeSurfaceView: Game returns from the idle mode
I/JmeSurfaceView: JmeSurfaceView’s joined the UI thread
I/JmeSurfaceView: JmeGame started in GLThread Asynchronously…
What is next ? Could you please send the full logs of your application after trying to launch the game activity ?
EDIT:
Use the 3 backticks to send logs as follows:
‘```log’
// logs
'```
It seems there is something wrong with the native vorbis audio decoder…
Are you trying to play music using an AudioNode or something before the application starts ? I mean before the actual game activity starts… even before calling startRenderer or during it…
Not before start as currently I am testing audio on events like walk attack etc. So yes I do have audio node but mostly initialed in controls or appstate not in beginning.
You do say that the game starts fine on a lower api level, are you able to play audio also fine ?
I checked my manifest it already has exported=true.
It may be something related to the native audio code, a deprecated api or something, i need some time to glance it over to find the defect…you may help me more by copying all logs (relevant and irrelevant ones) and sending it here, thank you.
Yes audio is working fine on api>=26 till api 30. 31,32,33 has this issue. api 30 have not checked yet.
Sure Will do that
@Pavl_G You are Right. Its a audio issue. I removed all audio nodes from my scene and api 30-33 all working. For now will try to change my audio file to .wav instead of .ogg and check if it works.
Please provide the full error log.
@Ali_RS @Pavl_G So I tried with audio nodes with .wav instead of .ogg and higher api are working good along with lower api upto 24( as per desugaring suggestion by ali). So as @Pavl_G mentioned in previous post issue has to do with native vorbis audio decoder. For me I am fine with .wav too and its working fine. Thanks a Lot!!
Good to know you find a workaround, afaik, the wave decoder are delegated to be handled by the android api, but we need to track this issue, Could you please help us and send the full error logs ?
EDIT:
Notice, it may be a simple matter of just binary or abi (application binary interface) build incompatibility as it just logs the build id, if that is the case then upgrading the abi or the required min android sdk on the output binary may work, we may be able to diagnose this through the error logs…
Here is only error logcat
2023-02-15 14:02:55.503 9000-9000 studio.deploy install_server-8dee6a62 E Could not remove dir '/data/data/org.Vyuha.ChakraVyuha/code_cache/.ll/': No such file or directory
2023-02-15 14:02:55.760 2844-3293 HwDetectorWithState com...oglequicksearchbox:interactor E a: 3
---------------------------- PROCESS STARTED (14613) for package org.Vyuha.ChakraVyuha ----------------------------
2023-02-15 14:02:56.156 1013-1032 SystemServiceRegistry com.android.networkstack.process E No service published for: ethernet
android.os.ServiceManager$ServiceNotFoundException: No service published for: ethernet
at android.os.ServiceManager.getServiceOrThrow(ServiceManager.java:166)
at android.app.SystemServiceRegistry$137.createService(SystemServiceRegistry.java:1825)
at android.app.SystemServiceRegistry$CachedServiceFetcher.getService(SystemServiceRegistry.java:1924)
at android.app.SystemServiceRegistry.getSystemService(SystemServiceRegistry.java:1601)
at android.app.ContextImpl.getSystemService(ContextImpl.java:2120)
at android.content.ContextWrapper.getSystemService(ContextWrapper.java:900)
at com.android.networkstack.tethering.Tethering.isEthernetSupported(Tethering.java:1561)
at com.android.networkstack.tethering.Tethering.makeSupportedDownstreams(Tethering.java:2520)
at com.android.networkstack.tethering.Tethering.updateSupportedDownstreams(Tethering.java:2494)
at com.android.networkstack.tethering.Tethering.updateConfiguration(Tethering.java:521)
at com.android.networkstack.tethering.Tethering.-$$Nest$mupdateConfiguration(Unknown Source:0)
at com.android.networkstack.tethering.Tethering$StateReceiver.onReceive(Tethering.java:1171)
at android.app.LoadedApk$ReceiverDispatcher$Args.lambda$getRunnable$0$android-app-LoadedApk$ReceiverDispatcher$Args(LoadedApk.java:1790)
at android.app.LoadedApk$ReceiverDispatcher$Args$$ExternalSyntheticLambda0.run(Unknown Source:2)
at android.os.Handler.handleCallback(Handler.java:942)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loopOnce(Looper.java:201)
at android.os.Looper.loop(Looper.java:288)
at android.os.HandlerThread.run(HandlerThread.java:67)
2023-02-15 14:02:57.230 7450-14652 SignInPerformer-19 com.google.android.gms E Game (org.Vyuha.ChakraVyuha) failed to include the Play Games Services application id in their AndroidManifest [CONTEXT service_id=1 ]
2023-02-15 14:02:57.230 7450-14652 PlayGamesS...Performer] com.google.android.gms E The Play Games Services application ID is missing from the Android Manifest. For more information, refer to the troubleshooting guide:
https://developers.google.com/games/services/android/troubleshooting#check_your_metadata_tags
2023-02-15 14:03:06.870 14613-14681 openal org.Vyuha.ChakraVyuha E [ALSOFT] (EE) Failed to set real-time priority for thread: Operation not permitted (1)
--------- beginning of crash
2023-02-15 14:03:12.758 14613-14676 libc org.Vyuha.ChakraVyuha A fdsan: attempted to close file descriptor 65, expected to be unowned, actually owned by ParcelFileDescriptor 0xfaf7431
2023-02-15 14:03:12.760 14613-14676 libc org.Vyuha.ChakraVyuha A Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 14676 (GLThread 52), pid 14613 (uha.ChakraVyuha)
2023-02-15 14:03:12.868 14700-14700 DEBUG pid-14700 E failed to readlink /proc/14676/fd/88: No such file or directory
2023-02-15 14:03:12.868 14700-14700 DEBUG pid-14700 E failed to readlink /proc/14676/fd/100: No such file or directory
2023-02-15 14:03:12.869 14700-14700 DEBUG pid-14700 E failed to readlink /proc/14676/fd/105: No such file or directory
2023-02-15 14:03:12.869 14700-14700 DEBUG pid-14700 E failed to readlink /proc/14676/fd/113: No such file or directory
2023-02-15 14:03:12.869 14700-14700 DEBUG pid-14700 E failed to readlink /proc/14676/fd/114: No such file or directory
2023-02-15 14:03:13.464 14700-14700 DEBUG pid-14700 A *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A Build fingerprint: 'google/sdk_gphone64_x86_64/emu64x:13/TE1A.220922.010/9219351:user/release-keys'
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A Revision: '0'
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A ABI: 'x86_64'
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A Timestamp: 2023-02-15 14:03:12.964963677+0530
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A Process uptime: 19s
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A Cmdline: org.Vyuha.ChakraVyuha
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A pid: 14613, tid: 14676, name: GLThread 52 >>> org.Vyuha.ChakraVyuha <<<
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A uid: 10159
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A signal 6 (SIGABRT), code -1 (SI_QUEUE), fault addr --------
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A Abort message: 'fdsan: attempted to close file descriptor 65, expected to be unowned, actually owned by ParcelFileDescriptor 0xfaf7431'
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A rax 0000000000000000 rbx 0000000000003915 rcx 0000732fd2ac19a4 rdx 0000000000000006
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A r8 0000000000000000 r9 0000000000000000 r10 0000732cafd78a30 r11 0000000000000203
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A r12 0000732cb3e63ae6 r13 0000732cafd78af0 r14 0000000000003954 r15 0000732fdedcfa38
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A rdi 0000000000003915 rsi 0000000000003954
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A rbp 0000000000000003 rsp 0000732cafd78760 rip 0000732fd2ac19a4
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A backtrace:
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A #00 pc 00000000000639a4 /apex/com.android.runtime/lib64/bionic/libc.so (fdsan_error(char const*, ...)+740) (BuildId: 007cb2313464df63debf8020e631c990)
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A #01 pc 00000000000635ef /apex/com.android.runtime/lib64/bionic/libc.so (android_fdsan_close_with_tag+671) (BuildId: 007cb2313464df63debf8020e631c990)
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A #02 pc 0000000000063d5b /apex/com.android.runtime/lib64/bionic/libc.so (close+11) (BuildId: 007cb2313464df63debf8020e631c990)
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A #03 pc 0000000000022f0f /data/app/~~wOSXTPiX1wgNJANg3zuWGQ==/org.Vyuha.ChakraVyuha-b0eMHCqqTj6SWpOSj6-xWA==/base.apk!libdecodejme.so (BuildId: acaf1ecb244bdebc5e5173b258b3fc2be97ed696)
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A #04 pc 000000000001deb8 /data/app/~~wOSXTPiX1wgNJANg3zuWGQ==/org.Vyuha.ChakraVyuha-b0eMHCqqTj6SWpOSj6-xWA==/base.apk!libdecodejme.so (ov_clear+280) (BuildId: acaf1ecb244bdebc5e5173b258b3fc2be97ed696)
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A #05 pc 0000000000022c4d /data/app/~~wOSXTPiX1wgNJANg3zuWGQ==/org.Vyuha.ChakraVyuha-b0eMHCqqTj6SWpOSj6-xWA==/base.apk!libdecodejme.so (Java_com_jme3_audio_plugins_NativeVorbisFile_close+109) (BuildId: acaf1ecb244bdebc5e5173b258b3fc2be97ed696)
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A #06 pc 000000000037d70b /apex/com.android.art/lib64/libart.so (art_quick_generic_jni_trampoline+219) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A #07 pc 0000000000369aed /apex/com.android.art/lib64/libart.so (nterp_helper+3837) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A #08 pc 00000000002b5ae6 [anon:dalvik-classes12.dex extracted in memory from /data/app/~~wOSXTPiX1wgNJANg3zuWGQ==/org.Vyuha.ChakraVyuha-b0eMHCqqTj6SWpOSj6-xWA==/base.apk!classes12.dex] (com.jme3.audio.plugins.NativeVorbisLoader.loadBuffer+122)
2023-02-15 14:03:13.465 14700-14700 DEBUG pid-14700 A #09 pc 0000000000368c28 /apex/com.android.art/lib64/libart.so (nterp_helper+56) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.466 14700-14700 DEBUG pid-14700 A #10 pc 00000000002b5c1e [anon:dalvik-classes12.dex extracted in memory from /data/app/~~wOSXTPiX1wgNJANg3zuWGQ==/org.Vyuha.ChakraVyuha-b0eMHCqqTj6SWpOSj6-xWA==/base.apk!classes12.dex] (com.jme3.audio.plugins.NativeVorbisLoader.load+42)
2023-02-15 14:03:13.466 14700-14700 DEBUG pid-14700 A #11 pc 000000000036a7e5 /apex/com.android.art/lib64/libart.so (nterp_helper+7157) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.466 14700-14700 DEBUG pid-14700 A #12 pc 00000000002acc0a [anon:dalvik-classes12.dex extracted in memory from /data/app/~~wOSXTPiX1wgNJANg3zuWGQ==/org.Vyuha.ChakraVyuha-b0eMHCqqTj6SWpOSj6-xWA==/base.apk!classes12.dex] (com.jme3.asset.DesktopAssetManager.loadLocatedAsset+22)
2023-02-15 14:03:13.466 14700-14700 DEBUG pid-14700 A #13 pc 0000000000369a88 /apex/com.android.art/lib64/libart.so (nterp_helper+3736) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.466 14700-14700 DEBUG pid-14700 A #14 pc 00000000002acb18 [anon:dalvik-classes12.dex extracted in memory from /data/app/~~wOSXTPiX1wgNJANg3zuWGQ==/org.Vyuha.ChakraVyuha-b0eMHCqqTj6SWpOSj6-xWA==/base.apk!classes12.dex] (com.jme3.asset.DesktopAssetManager.loadAsset+216)
2023-02-15 14:03:13.466 14700-14700 DEBUG pid-14700 A #15 pc 000000000036a7e5 /apex/com.android.art/lib64/libart.so (nterp_helper+7157) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.466 14700-14700 DEBUG pid-14700 A #16 pc 00000000002b0e7e [anon:dalvik-classes12.dex extracted in memory from /data/app/~~wOSXTPiX1wgNJANg3zuWGQ==/org.Vyuha.ChakraVyuha-b0eMHCqqTj6SWpOSj6-xWA==/base.apk!classes12.dex] (com.jme3.audio.AudioNode.<init>+154)
2023-02-15 14:03:13.466 14700-14700 DEBUG pid-14700 A #17 pc 0000000000369a88 /apex/com.android.art/lib64/libart.so (nterp_helper+3736) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.466 14700-14700 DEBUG pid-14700 A #18 pc 00000000002b0eb0 [anon:dalvik-classes12.dex extracted in memory from /data/app/~~wOSXTPiX1wgNJANg3zuWGQ==/org.Vyuha.ChakraVyuha-b0eMHCqqTj6SWpOSj6-xWA==/base.apk!classes12.dex] (com.jme3.audio.AudioNode.<init>+16)
2023-02-15 14:03:13.466 14700-14700 DEBUG pid-14700 A #19 pc 0000000000369a88 /apex/com.android.art/lib64/libart.so (nterp_helper+3736) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.466 14700-14700 DEBUG pid-14700 A #20 pc 0000000000005880 /data/data/org.Vyuha.ChakraVyuha/code_cache/.overlay/base.apk/classes8.dex (com.Vyuha.ChakraVyuha.Control.PlayingCharacterControl.setSpatial+48)
2023-02-15 14:03:13.466 14700-14700 DEBUG pid-14700 A #21 pc 000000000036a7e5 /apex/com.android.art/lib64/libart.so (nterp_helper+7157) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.466 14700-14700 DEBUG pid-14700 A #22 pc 000000000034432e [anon:dalvik-classes12.dex extracted in memory from /data/app/~~wOSXTPiX1wgNJANg3zuWGQ==/org.Vyuha.ChakraVyuha-b0eMHCqqTj6SWpOSj6-xWA==/base.apk!classes12.dex] (com.jme3.scene.Spatial.addControl+18)
2023-02-15 14:03:13.466 14700-14700 DEBUG pid-14700 A #23 pc 0000000000369a88 /apex/com.android.art/lib64/libart.so (nterp_helper+3736) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #24 pc 00000000000064f2 [anon:dalvik-classes5.dex extracted in memory from /data/app/~~wOSXTPiX1wgNJANg3zuWGQ==/org.Vyuha.ChakraVyuha-b0eMHCqqTj6SWpOSj6-xWA==/base.apk!classes5.dex] (com.Vyuha.ChakraVyuha.AppState.PlayingCharacterState.createCharacter+586)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #25 pc 0000000000369a88 /apex/com.android.art/lib64/libart.so (nterp_helper+3736) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #26 pc 000000000000660a [anon:dalvik-classes5.dex extracted in memory from /data/app/~~wOSXTPiX1wgNJANg3zuWGQ==/org.Vyuha.ChakraVyuha-b0eMHCqqTj6SWpOSj6-xWA==/base.apk!classes5.dex] (com.Vyuha.ChakraVyuha.AppState.PlayingCharacterState.initialize+70)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #27 pc 0000000000369a88 /apex/com.android.art/lib64/libart.so (nterp_helper+3736) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #28 pc 00000000002a8f70 [anon:dalvik-classes12.dex extracted in memory from /data/app/~~wOSXTPiX1wgNJANg3zuWGQ==/org.Vyuha.ChakraVyuha-b0eMHCqqTj6SWpOSj6-xWA==/base.apk!classes12.dex] (com.jme3.app.state.BaseAppState.initialize+28)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #29 pc 000000000036a7e5 /apex/com.android.art/lib64/libart.so (nterp_helper+7157) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #30 pc 00000000002a8b5a [anon:dalvik-classes12.dex extracted in memory from /data/app/~~wOSXTPiX1wgNJANg3zuWGQ==/org.Vyuha.ChakraVyuha-b0eMHCqqTj6SWpOSj6-xWA==/base.apk!classes12.dex] (com.jme3.app.state.AppStateManager.initializePending+70)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #31 pc 0000000000369a88 /apex/com.android.art/lib64/libart.so (nterp_helper+3736) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #32 pc 00000000002a8cfa [anon:dalvik-classes12.dex extracted in memory from /data/app/~~wOSXTPiX1wgNJANg3zuWGQ==/org.Vyuha.ChakraVyuha-b0eMHCqqTj6SWpOSj6-xWA==/base.apk!classes12.dex] (com.jme3.app.state.AppStateManager.update+6)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #33 pc 0000000000369a88 /apex/com.android.art/lib64/libart.so (nterp_helper+3736) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #34 pc 00000000002a7a8e [anon:dalvik-classes12.dex extracted in memory from /data/app/~~wOSXTPiX1wgNJANg3zuWGQ==/org.Vyuha.ChakraVyuha-b0eMHCqqTj6SWpOSj6-xWA==/base.apk!classes12.dex] (com.jme3.app.SimpleApplication.update+98)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #35 pc 0000000000369a88 /apex/com.android.art/lib64/libart.so (nterp_helper+3736) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #36 pc 00000000003b2c1a [anon:dalvik-classes12.dex extracted in memory from /data/app/~~wOSXTPiX1wgNJANg3zuWGQ==/org.Vyuha.ChakraVyuha-b0eMHCqqTj6SWpOSj6-xWA==/base.apk!classes12.dex] (com.jme3.view.surfaceview.JmeSurfaceView.update+18)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #37 pc 000000000036a8a1 /apex/com.android.art/lib64/libart.so (nterp_helper+7345) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #38 pc 00000000003859ce [anon:dalvik-classes12.dex extracted in memory from /data/app/~~wOSXTPiX1wgNJANg3zuWGQ==/org.Vyuha.ChakraVyuha-b0eMHCqqTj6SWpOSj6-xWA==/base.apk!classes12.dex] (com.jme3.system.android.OGLESContext.onDrawFrame+114)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #39 pc 000000000036a8a1 /apex/com.android.art/lib64/libart.so (nterp_helper+7345) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #40 pc 000000000044aef8 /system/framework/framework.jar (android.opengl.GLSurfaceView$GLThread.guardedRun+1096)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #41 pc 0000000000369a88 /apex/com.android.art/lib64/libart.so (nterp_helper+3736) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #42 pc 000000000044b4fc /system/framework/framework.jar (android.opengl.GLSurfaceView$GLThread.run+52)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #43 pc 00000000003725c4 /apex/com.android.art/lib64/libart.so (art_quick_invoke_stub+756) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #44 pc 00000000003f21a6 /apex/com.android.art/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+214) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #45 pc 00000000007e617e /apex/com.android.art/lib64/libart.so (art::JValue art::InvokeVirtualOrInterfaceWithJValues<art::ArtMethod*>(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, art::ArtMethod*, jvalue const*)+478) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #46 pc 000000000083a91c /apex/com.android.art/lib64/libart.so (art::Thread::CreateCallback(void*)+1404) (BuildId: 44bc52550248fc712a381bef164b75c7)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #47 pc 00000000000ccd2a /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+58) (BuildId: 007cb2313464df63debf8020e631c990)
2023-02-15 14:03:13.467 14700-14700 DEBUG pid-14700 A #48 pc 0000000000060d37 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+55) (BuildId: 007cb2313464df63debf8020e631c990)
2023-02-15 14:03:13.493 290-290 tombstoned tombstoned E Tombstone written to: tombstone_05
---------------------------- PROCESS ENDED (14613) for package org.Vyuha.ChakraVyuha ----------------------------
2023-02-15 14:03:13.848 434-434 ClientCache surfaceflinger E failed to get buffer, invalid process token
2023-02-15 14:03:13.849 434-434 BpTransact...edListener surfaceflinger E Failed to transact (-32)
2023-02-15 14:03:13.851 434-434 BpTransact...edListener surfaceflinger E Failed to transact (-32)
---------------------------- PROCESS STARTED (14715) for package org.Vyuha.ChakraVyuha ----------------------------
2023-02-15 14:03:14.471 7450-14745 SignInPerformer-21 com.google.android.gms E Game (org.Vyuha.ChakraVyuha) failed to include the Play Games Services application id in their AndroidManifest [CONTEXT service_id=1 ]
2023-02-15 14:03:14.471 7450-14745 PlayGamesS...Performer] com.google.android.gms E The Play Games Services application ID is missing from the Android Manifest. For more information, refer to the troubleshooting guide:
https://developers.google.com/games/services/android/troubleshooting#check_your_metadata_tags
2023-02-15 14:04:31.688 411-411 android.ha...rvice-mock and....power.stats@1.0-service.mock E Failed to getEnergyData
2023-02-15 14:06:31.687 411-411 android.ha...rvice-mock and....power.stats@1.0-service.mock E Failed to getEnergyData
2023-02-15 14:08:28.309 1153-14749 GmsTaskScheduler com.google.android.gms.persistent E sendWakeUpEvent called on SchedulerClientBroadcastStrategy
2023-02-15 14:08:28.310 1153-14749 WakeLock com.google.android.gms.persistent E GCM_HB_ALARM release without a matched acquire!
2023-02-15 14:08:28.383 1153-14749 GmsTaskScheduler com.google.android.gms.persistent E sendWakeUpEvent called on SchedulerClientBroadcastStrategy
2023-02-15 14:08:31.688 411-411 android.ha...rvice-mock and....power.stats@1.0-service.mock E Failed to getEnergyData
2023-02-15 14:10:31.687 411-411 android.ha...rvice-mock and....power.stats@1.0-service.mock E Failed to getEnergyData
2023-02-15 14:12:31.687 411-411 android.ha...rvice-mock and....power.stats@1.0-service.mock E Failed to getEnergyData
2023-02-15 14:14:31.688 411-411 android.ha...rvice-mock and....power.stats@1.0-service.mock E Failed to getEnergyData
2023-02-15 14:15:51.693 575-924 ActivityManager system_server E Sending non-protected broadcast settings.intelligence.battery.action.FETCH_BATTERY_USAGE_DATA from system 871:com.android.systemui/u0a142 pkg com.android.systemui
java.lang.Throwable
at com.android.server.am.ActivityManagerService.checkBroadcastFromSystem(ActivityManagerService.java:13546)
at com.android.server.am.ActivityManagerService.broadcastIntentLocked(ActivityManagerService.java:14268)
at com.android.server.am.ActivityManagerService.broadcastIntentLocked(ActivityManagerService.java:13564)
at com.android.server.am.ActivityManagerService.broadcastIntentWithFeature(ActivityManagerService.java:14442)
at android.app.IActivityManager$Stub.onTransact(IActivityManager.java:2296)
at com.android.server.am.ActivityManagerService.onTransact(ActivityManagerService.java:2630)
at android.os.Binder.execTransactInternal(Binder.java:1280)
at android.os.Binder.execTransact(Binder.java:1244)
2023-02-15 14:15:51.764 15794-15794 gs.intelligence com...android.settings.intelligence E Not starting debugger since process cannot load the jdwp agent.
2023-02-15 14:15:53.737 15826-15826 gle.android.gms com.google.android.gms E Not starting debugger since process cannot load the jdwp agent.
2023-02-15 14:16:18.392 1153-3200 GmsTaskScheduler com.google.android.gms.persistent E sendWakeUpEvent called on SchedulerClientBroadcastStrategy
2023-02-15 14:16:18.393 1153-3200 WakeLock com.google.android.gms.persistent E GCM_HB_ALARM release without a matched acquire!
2023-02-15 14:16:18.482 1153-3200 GmsTaskScheduler com.google.android.gms.persistent E sendWakeUpEvent called on SchedulerClientBroadcastStrategy
2023-02-15 14:16:31.688 411-411 android.ha...rvice-mock and....power.stats@1.0-service.mock E Failed to getEnergyData
2023-02-15 14:17:53.669 2768-2768 A com...d.googlequicksearchbox:search E onError
com.google.android.apps.gsa.shared.speech.a.m: errorCode: 65561, engine: 2
at com.google.android.apps.gsa.staticplugins.dc.a.e.a(PG:3)
at com.google.android.apps.gsa.s3.n.hh(PG:1)
at com.google.cd.g.a.f.e(PG:2)
at com.google.android.apps.gsa.speech.k.a.g.d(PG:22)
at com.google.android.apps.gsa.speech.k.a.g.ks(PG:6)
at com.google.android.apps.gsa.s3.o.e(PG:14)
at com.google.android.apps.gsa.s3.p.run(PG:1)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:463)
at java.util.concurrent.FutureTask.run(FutureTask.java:264)
at com.google.android.apps.gsa.shared.util.c.a.e.run(PG:2)
at com.google.android.apps.gsa.shared.util.c.a.bi.run(PG:1)
at com.google.android.apps.gsa.shared.util.c.a.bi.run(PG:1)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)
at java.lang.Thread.run(Thread.java:1012)
at com.google.android.apps.gsa.shared.util.c.a.l.run(PG:5)
Caused by: com.google.android.apps.gsa.shared.speech.a.o: errorCode: 65586, engine: 2
at com.google.android.apps.gsa.s3.n.hh(PG:1)
at com.google.cd.g.a.f.e(PG:2)
at com.google.android.apps.gsa.speech.k.a.g.d(PG:22)
at com.google.android.apps.gsa.speech.k.a.g.ks(PG:6)
at com.google.android.apps.gsa.s3.o.e(PG:14)
at com.google.android.apps.gsa.s3.p.run(PG:1)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:463)
at java.util.concurrent.FutureTask.run(FutureTask.java:264)
at com.google.android.apps.gsa.shared.util.c.a.e.run(PG:2)
at com.google.android.apps.gsa.shared.util.c.a.bi.run(PG:1)
at com.google.android.apps.gsa.shared.util.c.a.bi.run(PG:1)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)
at java.lang.Thread.run(Thread.java:1012)
at com.google.android.apps.gsa.shared.util.c.a.l.run(PG:5)
Caused by: com.google.android.apps.gsa.shared.speech.a.k: errorCode: 401, engine: 2
at com.google.android.apps.gsa.assistant.shared.n.h.a(PG:5)
at com.google.android.apps.gsa.s3.producers.j.hE(PG:2)
at com.google.android.apps.gsa.speech.k.a.g.d(PG:16)
at com.google.android.apps.gsa.speech.k.a.g.ks(PG:6)
at com.google.android.apps.gsa.s3.o.e(PG:14)
at com.google.android.apps.gsa.s3.p.run(PG:1)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:463)
at java.util.concurrent.FutureTask.run(FutureTask.java:264)
at com.google.android.apps.gsa.shared.util.c.a.e.run(PG:2)
at com.google.android.apps.gsa.shared.util.c.a.bi.run(PG:1)
at com.google.android.apps.gsa.shared.util.c.a.bi.run(PG:1)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)
at java.lang.Thread.run(Thread.java:1012)
at com.google.android.apps.gsa.shared.util.c.a.l.run(PG:5)
2023-02-15 14:17:53.980 1153-6862 GmsTaskScheduler com.google.android.gms.persistent E sendWakeUpEvent called on SchedulerClientBroadcastStrategy
2023-02-15 14:17:54.493 15826-16040 constellation com.google.android.gms E [rpc_manager] GetConsent failed with status: deri{code=INVALID_ARGUMENT, description=device_id.device_android_id is required., cause=null}
Exception:
derj: INVALID_ARGUMENT: device_id.device_android_id is required.
at wql.o(:com.google.android.gms@221821047@22.18.21 (190800-453244992):3)
at wql.e(:com.google.android.gms@221821047@22.18.21 (190800-453244992):17)
at xhr.a(:com.google.android.gms@221821047@22.18.21 (190800-453244992):6)
at xhn.b(:com.google.android.gms@221821047@22.18.21 (190800-453244992):5)
at xgp.n(:com.google.android.gms@221821047@22.18.21 (190800-453244992):6)
at com.google.android.gms.constellation.EventManager.f(:com.google.android.gms@221821047@22.18.21 (190800-453244992):273)
at com.google.android.gms.constellation.EventManager.onHandleIntent(:com.google.android.gms@221821047@22.18.21 (190800-453244992):33)
at com.google.android.chimera.IntentOperation.onHandleIntent(:com.google.android.gms@221821047@22.18.21 (190800-453244992):2)
at uim.onHandleIntent(:com.google.android.gms@221821047@22.18.21 (190800-453244992):4)
at ewd.run(:com.google.android.gms@221821047@22.18.21 (190800-453244992):3)
at ewc.run(:com.google.android.gms@221821047@22.18.21 (190800-453244992):11)
at cdgo.run(:com.google.android.gms@221821047@22.18.21 (190800-453244992):2)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)
at java.lang.Thread.run(Thread.java:1012)
2023-02-15 14:18:04.521 1485-1584 DialerTraceManagerImpl com.google.android.dialer E com.google.apps.tiktok.tracing.TraceManagerImpl.handleTraceTimeout:312 Trace Broadcast to com.android.dialer.voicemail.service.receivers.MwiReceiver_Receiver android.telephony.action.SHOW_VOICEMAIL_NOTIFICATION timed out after 2492422 ms. Complete trace: # qsm@847d21fa
qsq:
at tk_trace.handleBroadcast(Started After:0)
at tk_trace.Broadcast to com.android.dialer.voicemail.service.receivers.MwiReceiver_Receiver android.telephony.action.SHOW_VOICEMAIL_NOTIFICATION(Started After:0)
2023-02-15 14:18:31.688 411-411 android.ha...rvice-mock and....power.stats@1.0-service.mock E Failed to getEnergyData
2023-02-15 14:20:31.688 411-411 android.ha...rvice-mock and....power.stats@1.0-service.mock E Failed to getEnergyData
2023-02-15 14:22:31.690 411-411 android.ha...rvice-mock and....power.stats@1.0-service.mock E Failed to getEnergyData
2023-02-15 14:24:08.495 1153-16048 GmsTaskScheduler com.google.android.gms.persistent E sendWakeUpEvent called on SchedulerClientBroadcastStrategy
2023-02-15 14:24:08.495 1153-16048 WakeLock com.google.android.gms.persistent E GCM_HB_ALARM release without a matched acquire!
2023-02-15 14:24:08.582 1153-16048 GmsTaskScheduler com.google.android.gms.persistent E sendWakeUpEvent called on SchedulerClientBroadcastStrategy
2023-02-15 14:24:31.689 411-411 android.ha...rvice-mock and....power.stats@1.0-service.mock E Failed to getEnergyData
In your Gradle build can you please change the jme3-android-native
versions to 3.3.0-alpha2
and let us know if it works fine with “ogg” audio on android API 31+?
Hint: Start reading from here.
Something related to closing a FILE while it’s still in use by another resource (may be the audio file or a dynamic library).
The full error stack.
@Anuj_Topiwala thanks for your contributions.