You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 11, 2021. It is now read-only.
I am using Xamarin Android with Cocossharp with Visual Studio 2017(15.9.12) on Windows 10.
When building the project with 64-bit architecture (arm64-v8a, x86_64) and run on devices with 64-bit Android OS, sounds(sfx) do not play and the application crashes after a while.
The debug log shows that OpenAL library(libopenal32.dll) for 64-bit architecture is missing. Debug log file is attached. debug_log.txt
When built into release apk with 64-bit architecture (arm64-v8a, x86_64), apk's sturcture shows that the library is missing from 64-bit lib path. Images showing lib folder's contents between 32-bit(armeabi-v7a, x86) and 64-bit(arm64-v8a, x86_64) are attached.
This is a serious issue since Google Play Store will stop accepting release without 64-bit support on Aug-1-2019 and with this issue, 64-bit support cannot be added to release file.
The text was updated successfully, but these errors were encountered:
Add them to your project to folder lib to folders named by the particular ABI.
Set the Build Action of those downloaded libs to AndroidNativeLibrary.
It should work now, if it doesn't, try cleaning and rebuilding the solution or if even that doesn't help, close VS, delete bin and obj folders and try rebuilding again in VS.
@bramborman
Thank you very much for sharing.
Your method was exactly what we ended up doing as a workaround for the problem after posting the issue here.
It seemed to be working ok.
But since we did not have the time to test it thoroughly, we did not post the method here.
We are still hoping to get an answer from the dev team.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I am using Xamarin Android with Cocossharp with Visual Studio 2017(15.9.12) on Windows 10.
When building the project with 64-bit architecture (arm64-v8a, x86_64) and run on devices with 64-bit Android OS, sounds(sfx) do not play and the application crashes after a while.
The debug log shows that OpenAL library(libopenal32.dll) for 64-bit architecture is missing. Debug log file is attached.
debug_log.txt
When built into release apk with 64-bit architecture (arm64-v8a, x86_64), apk's sturcture shows that the library is missing from 64-bit lib path. Images showing lib folder's contents between 32-bit(armeabi-v7a, x86) and 64-bit(arm64-v8a, x86_64) are attached.
This is a serious issue since Google Play Store will stop accepting release without 64-bit support on Aug-1-2019 and with this issue, 64-bit support cannot be added to release file.
The text was updated successfully, but these errors were encountered: