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.
12 lines
350 B
XML
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>
|