zeekr_apk_mod

(★ 57)

Modifying system APKs from Zeekr Infotainment System

File Explorer

Showing a partial file list — download the zip above to see everything.

  • .gitattributes
  • .gitignore

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Showing a partial file list.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

adb install

View Details ▼

Push packages to a connected Android device or emulator.

adb install {{path/to/file}}.apk

Push an Android application to an emulator/device:

adb -s {{serial_number}} install {{path/to/file}}.apk

Push an Android application to a specific emulator/device (overrides `$ANDROID_SERIAL`):

adb install -r {{path/to/file}}.apk

[r]einstall an existing app, keeping its data:

🔍

adb

View Details ▼

Android Debug Bridge: communicate with an Android emulator instance or connected Android devices.
Some subcommands such as `shell` have their own usage documentation.

adb start-server

Check whether the adb server process is running and start it:

adb kill-server

Terminate the adb server process:

adb shell

Start a remote shell in the target emulator/device instance:

🔍

apktool

View Details ▼

Reverse engineer APK files.

apktool d {{path/to/file}}.apk

Decode an APK file:

apktool b {{path/to/directory}}

Build an APK file from a directory:

apktool if {{path/to/framework}}.apk

Install and store a framework:

🔍

brew install

View Details ▼

Install a Homebrew formula or cask.

brew install {{formula|cask}}

Install a formula/cask:

brew install {{[-s|--build-from-source]}} {{formula}}

Build and install a formula from source (dependencies will still be installed from bottles):

brew install {{[-n|--dry-run]}} {{formula|cask}}

Download the manifest, print what would be installed but don't actually install anything:

🔍

git lfs

View Details ▼

Work with large files in Git repositories.

git lfs install

Initialize Git LFS:

git lfs track '{{*.bin}}'

Track files that match a glob:

git config {{[-f|--file]}} .lfsconfig lfs.url {{lfs_endpoint_url}}

Change the Git LFS endpoint URL (useful if the LFS server is separate from the Git server):

🔍

python

View Details ▼

Python language interpreter.

python

Start a REPL (interactive shell):

python {{path/to/file.py}}

Execute a specific Python file:

python -i {{path/to/file.py}}

Execute a specific Python file and start a REPL:

🔍

zipalign

View Details ▼

Zip archive alignment tool.
Part of the Android SDK build tools.

zipalign {{4}} {{path/to/input.zip}} {{path/to/output.zip}}

Align the data of a Zip file on 4-byte boundaries:

zipalign -v -c {{4}} {{path/to/input.zip}}

Check that a Zip file is correctly aligned on 4-byte boundaries and display the results in a verbose manner:

🔍

zsh

View Details ▼

Z SHell, a Bash-compatible command-line interpreter.
See also: `bash`, `!`, `^`.

zsh

Start an interactive shell session:

zsh -c "{{echo Hello world}}"

Execute specific [c]ommands:

zsh {{path/to/script.zsh}}

Execute a specific script:

// repository documentation