Skip to content

Commit

Permalink
Target at least Android SDK 19 in all cases.
Browse files Browse the repository at this point in the history
NDK r24 dropped support for SDK 18 and under. Support for SDK 19 was
added all the way back in NDK r9b, so no modern user should have any
trouble there.
  • Loading branch information
player-03 committed Jun 14, 2022
1 parent bc891ed commit 68391a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions toolchain/android-toolchain-clang.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- Set architecture -->
<section if="HXCPP_X86">
<set name="ARCH" value="-x86" />
<set name="PLATFORM_NUMBER" value="16" />
<set name="PLATFORM_NUMBER" value="19" />
<set name="ABITRIPLE" value="i686-linux-android" />
</section>

Expand All @@ -15,7 +15,7 @@

<section if="HXCPP_ARMV7">
<set name="ARCH" value="-v7" />
<set name="PLATFORM_NUMBER" value="16" />
<set name="PLATFORM_NUMBER" value="19" />
<set name="ABITRIPLE" value="armv7a-linux-androideabi" />
<set name="EXEPREFIX" value="arm-linux-androideabi" />
</section>
Expand Down

0 comments on commit 68391a9

Please sign in to comment.