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.
This commit is contained in:
player-03
2021-11-07 11:21:19 -05:00
committed by Joseph Cloutier
parent 80b9b89908
commit 2cd7161bbe

View File

@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<project>
<ndll name="::extensionLowerCase::" />
<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>
</project>