Files
lime/templates/extension/include.xml
player-03 2cd7161bbe Don't expect Android extensions to use ndlls
I can't think of any practical reasons for an Android extension to compile an ndll. All of Android's system functions require Java, not C++, and you can get the speed of C++ just by writing Haxe code.

I surveyed several Android extensions on lib.haxe.org, and not one of them used ndlls when targeting Android.
2022-06-05 22:36:01 -04:00

12 lines
350 B
XML

<?xml version="1.0" encoding="utf-8"?>
<project>
<ndll name="::extensionLowerCase::" unless="android" />
<!-- Use the following for an Android Java extension, not needed otherwise -->
<dependency name="::extensionLowerCase::" path="dependencies/android" if="android" />
<android extension="org.haxe.extension.::className::" />
</project>