MCPcopy Create free account
hub / github.com/defold/defold / validate_android_vkquality_files

Function validate_android_vkquality_files

editor/scripts/bundle.py:500–506  ·  view source on GitHub ↗
(jar)

Source from the content-addressed store, hash-verified

498
499
500def validate_android_vkquality_files(jar):
501 with zipfile.ZipFile(jar, 'r') as zf:
502 entries = set(zf.namelist())
503 missing = [file for file in REQUIRED_ANDROID_VKQUALITY_FILES if file not in entries]
504 if missing:
505 raise Exception("Editor Bob package is missing required Android VkQuality files: %s" %
506 ", ".join(missing))
507
508
509def create_standalone_editor_jar(jdk, platform):

Callers 1

create_bundleFunction · 0.85

Calls 2

setFunction · 0.85
namelistMethod · 0.45

Tested by

no test coverage detected