From 2e693d03dbe9fb857b77e50dea235090c45e01b7 Mon Sep 17 00:00:00 2001 From: Alessandro Astone Date: Thu, 11 May 2023 21:20:46 +0200 Subject: [PATCH] Switch to a good verison of libndk_translation The previous version targeted Android 12 if 64 bit, so native arm64 apks are very likely to not work. Switch to a version targeting Android 11. --- stuff/ndk.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stuff/ndk.py b/stuff/ndk.py index 45cb9bd..e40fa16 100644 --- a/stuff/ndk.py +++ b/stuff/ndk.py @@ -6,10 +6,10 @@ from tools.logger import Logger class Ndk(General): id = "libndk" partition = "system" - dl_link = "https://github.com/supremegamers/vendor_google_proprietary_ndk_translation-prebuilt/archive/181d9290a69309511185c4417ba3d890b3caaaa8.zip" + dl_link = "https://github.com/supremegamers/vendor_google_proprietary_ndk_translation-prebuilt/archive/9324a8914b649b885dad6f2bfd14a67e5d1520bf.zip" dl_file_name = "libndktranslation.zip" extract_to = "/tmp/libndkunpack" - act_md5 = "0beff55f312492f24d539569d84f5bfb" + act_md5 = "c9572672d1045594448068079b34c350" apply_props = { "ro.product.cpu.abilist": "x86_64,x86,armeabi-v7a,armeabi,arm64-v8a", "ro.product.cpu.abilist32": "x86,armeabi-v7a,armeabi",