zeekr_apk_mod

(★ 57)

Modifying system APKs from Zeekr Infotainment System

파일 탐색기

파일 수가 많아 일부만 표시됩니다. 전체 파일은 위 다운로드 버튼으로 확인해 주세요.

  • .gitattributes
  • .gitignore

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

파일 목록이 많아 일부만 표시됩니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

adb install

설명 보기 ▼

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

설명 보기 ▼

안드로이드 디버그 브릿지: 안드로이드 에뮬레이터 객체 또는 연결된 안드로이드 기기와 통신하는 도구.
shell과 같은 일부 하위 명령어는 별도의 사용법 문서를 제공.
더 많은 정보: <https://developer.android.com/tools/adb>.

adb start-server

adb 서버 프로세스가 실행되고 있고, 시작하는지 확인:

adb kill-server

adb 서버 프로세스 종료:

adb shell

대상 에뮬레이터/장치 객체에서 원격 쉘 시작:

🔍

apktool

설명 보기 ▼

APK 파일 리버스 엔지니어링.
더 많은 정보: <https://ibotpeaches.github.io/Apktool/>.

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

APK 파일 디코딩:

apktool b {{path/to/directory}}

디렉토리로부터 APK 파일 빌드:

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

프레임워크 설치 및 저장:

🔍

brew install

설명 보기 ▼

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

설명 보기 ▼

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

설명 보기 ▼

Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.

python

REPL(대화형 셸) 시작:

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

특정 Python 파일 실행:

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

특정 Python 파일 실행 후 REPL 시작:

🔍

zipalign

설명 보기 ▼

Zip 아카이브 정렬 도구.
Android SDK 빌드 도구의 일부.
더 많은 정보: <https://developer.android.com/tools/zipalign>.

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

Zip 파일의 데이터를 4바이트 경계에 맞춰 정렬:

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

Zip 파일이 4바이트 경계에 맞게 올바르게 정렬되었는지 확인하고 결과를 자세히 표시:

🔍

zsh

설명 보기 ▼

Z SHell, Bash 호환 명령줄 인터프리터.
관련 항목: `bash`, `!`, `^`.
더 많은 정보: <https://zsh.sourceforge.io/Doc/Release/Invocation.html#Invocation>.

zsh

대화형 셸 세션 시작:

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

특정 [c]명령 실행:

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

특정 스크립트 실행:

// repository documentation