본문 바로가기
Android/기본기능

[Android] AOSP 소스 다운로드 및 Emulator 빌드방법

by 백호루이 2023. 7. 12.
반응형

* AOSP 소스코드 다운로드 받기

 

1. Manifest의 URL 지정

$ repo init -u https://android.googlesource.com/platform/manifest

 

2. 마스터 분기 지정

$ repo init -u https://android.googlesource.com/platform/manifest -b android-12.1.0_r27

  - android 12 가장 마지막 tag로 받기

 

※ AOSP tag 정보

https://source.android.google.cn/docs/setup/about/build-numbers?hl=ko#source-code-tags-and-builds 

 

코드명, 태그 및 빌드 번호  |  Android 오픈소스 프로젝트  |  Android Open Source Project

<!-- Copyright 2019 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICE

source.android.google.cn

 

3. repo sync로 받으면 됨.

 

 

* AOSP 소스코드 빌드하기

1. Emulator로 실행하기

source build/envsetup.sh
lunch aosp_x86_64-eng
Emulator
반응형

댓글