0

I tried setting IL2CPP as the builder and exporting but it only exports the x86 and ARM v7 native libs. Is it possible to export a Unity 5.3 project as an Android Studio project with ARM v8 jni libs bundled?

ravindu1024
  • 1,496
  • 1
  • 13
  • 30

1 Answers1

4

No, it is not possible for export a Unity project for ARMv8 on Android now. This is something that will be added in the future, but we're not sure when yet. For now, only 32-bit is supported.

Josh Peterson
  • 2,299
  • 19
  • 21
  • Expanding a bit: Unity does not provide armv8 native libraries at the moment, that's why they don't get exported :) – Over17 Jul 07 '16 at 11:52
  • Is it not possible even with the new IL2CPP compiler? – ravindu1024 Jul 08 '16 at 00:50
  • Yes, it is possible, as IL2CPP generates C++ code that can be compiled for any architecture. However, there are a number of other considerations. ARMv8 will likely be supported for Android at some point though. – Josh Peterson Jul 08 '16 at 11:27