-
When I try to build the xyz example for android I get the following error: When I looked deeper into the error itself, I found out that the invINDEX is a uint32, which of course will overflow a 32-bit integer, therefore I am wondering if I need to install something, which lets me build for Android (/mobile in general)? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Thank you for reporting this. Xyz is compatible with Android and we will make it compatible with 32-bit soon. In the meantime, you need to build it specifically for a 64-bit Android platform due to that 32-bit overflow. For example, if you have an amd64 Android device, you could do this: core build android/amd64 The fact that it does not work on 32-bit is not a fundamental limitation, just a minor error, so we will get it working on 32-bit soon. Apologies for that issue. |
Beta Was this translation helpful? Give feedback.
Thank you for reporting this. Xyz is compatible with Android and we will make it compatible with 32-bit soon. In the meantime, you need to build it specifically for a 64-bit Android platform due to that 32-bit overflow. For example, if you have an amd64 Android device, you could do this:
The fact that it does not work on 32-bit is not a fundamental limitation, just a minor error, so we will get it working on 32-bit soon. Apologies for that issue.