Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Provide direct download links to all Android APK architectures #281

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 14 additions & 3 deletions downloads.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ <h2>Windows</h2>

<div class="column is-12-tablet is-6-desktop">
<h2>Android</h2>
<p>Android 4.0 or later is recommended.</p>
<p>Android 5.0 or later is required.</p>
<a href="https://play.google.com/store/apps/details?id=net.minetest.minetest&utm_source=website&pcampaignid=MKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1">
<img style="max-height: 7em;" alt="Get it on Google Play" src="{{ '/media/google-play-badge.png' | relative_url }}"/>
</a>
Expand All @@ -78,9 +78,20 @@ <h2>Android</h2>
</a>

<p>
Alternatively,
<a href="https://github.com/minetest/minetest/releases/download/5.7.0/app-armeabi-v7a-release.apk">download the APK</a>.
Alternatively, download the APK:
</p>
<ul>
<li>
ARM:
<a href="https://github.com/minetest/minetest/releases/download/5.7.0/app-arm64-v8a-release.apk">64-bit</a> -
<a href="https://github.com/minetest/minetest/releases/download/5.7.0/app-armeabi-v7a-release.apk">32-bit</a>
</li>
<li>
x86:
<a href="https://github.com/minetest/minetest/releases/download/5.7.0/app-x86_64-release.apk">64-bit</a> -
<a href="https://github.com/minetest/minetest/releases/download/5.7.0/app-x86-release.apk">32-bit</a>
</li>
</ul>
<p>
<strong>Note:</strong> We advise not to use unofficial builds commonly found on the Play Store.
They may contain excessive advertisements or spyware, or be distributed under proprietary terms.
Expand Down