|
|
|
|
@ -14,7 +14,7 @@ class Ndk(General):
|
|
|
|
|
dl_file_name = "libndktranslation.zip"
|
|
|
|
|
extract_to = "/tmp/libndkunpack"
|
|
|
|
|
apply_props = {
|
|
|
|
|
"ro.product.cpu.abilist": "x86_64,x86,armeabi-v7a,armeabi,arm64-v8a",
|
|
|
|
|
"ro.product.cpu.abilist": "x86_64,x86,arm64-v8a,armeabi-v7a,armeabi",
|
|
|
|
|
"ro.product.cpu.abilist32": "x86,armeabi-v7a,armeabi",
|
|
|
|
|
"ro.product.cpu.abilist64": "x86_64,arm64-v8a",
|
|
|
|
|
"ro.dalvik.vm.native.bridge": "libndk_translation.so",
|
|
|
|
|
@ -49,4 +49,4 @@ class Ndk(General):
|
|
|
|
|
Logger.info("Copying libndk library files ...")
|
|
|
|
|
name = re.findall("([a-zA-Z0-9]+)\.zip", self.dl_link)[0]
|
|
|
|
|
shutil.copytree(os.path.join(self.extract_to, "vendor_google_proprietary_ndk_translation-prebuilt-" + name,
|
|
|
|
|
"prebuilts"), os.path.join(self.copy_dir, self.partition), dirs_exist_ok=True)
|
|
|
|
|
"prebuilts"), os.path.join(self.copy_dir, self.partition), dirs_exist_ok=True)
|
|
|
|
|
|