1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 15:13:27 +02:00

Merge branch 'native' into 'master'

wp-fdroid: Don't imply 32bit code does not work on 64bit systems

Maybe someone could also check if the client lists app with 32bit code as incompatible with 64bit systems, even if they can run it (arm->arm64, i386->x64, mips->mips64 etc.).

Ref: https://f-droid.org/forums/topic/accordion-and-melodeon-2/

See merge request !68
This commit is contained in:
Daniel Martí 2015-08-28 16:10:36 +00:00
commit 2253399190

View File

@ -452,7 +452,7 @@ class FDroid
$hasabis = isset($apk['nativecode']);
if($hasabis) {
$abis = str_replace(',', ' ', $apk['nativecode']);
$out.="<p>This version uses native code and will only run on: ".$abis."</p>";
$out.="<p>This version uses native code and is built for: ".$abis."</p>";
}
// Is this source or binary?