()
| 52 | |
| 53 | # Manifest file describing out test application |
| 54 | def get_android_manifest() -> str: |
| 55 | manifest = RepoRelative('cube/android/AndroidManifest.xml') |
| 56 | if not os.path.isfile(manifest): |
| 57 | print(f"Unable to find manifest for APK! {manifest}") |
| 58 | sys.exit(-1) |
| 59 | return manifest |
| 60 | |
| 61 | # Generate the APK from the CMake binaries |
| 62 | def generate_apk(SDK_ROOT : str, CMAKE_INSTALL_DIR : str) -> str: |
no test coverage detected