fixed issue with litegapps 64 only 12.00 (#63)

This commit is contained in:
Maddox Schmidlkofer
2026-01-31 10:05:31 -05:00
committed by GitHub
parent 34594ff9bd
commit e7da0097c6

View File

@@ -212,4 +212,5 @@ class LiteGapps(General):
# extract extract_to/files/files.tar.xz file to extract_to/appunpack
run( [ "tar", "-xvf", os.path.join(self.extract_to, "files", "files.tar.xz"), "-C", os.path.join(self.extract_to, "appunpack"), ])
shutil.copytree( os.path.join( self.extract_to, "appunpack", self.arch[0], self.api_level_map[self.version], "system",), os.path.join(self.copy_dir, "system"), dirs_exist_ok=True,)
base_version = self.version.replace("_64only", "").replace("__64only", "")
shutil.copytree( os.path.join( self.extract_to, "appunpack", self.arch[0], self.api_level_map[base_version], "system",), os.path.join(self.copy_dir, "system"), dirs_exist_ok=True,)