mirror of
https://github.com/revanced/Apktool.git
synced 2024-12-11 21:37:47 +01:00
docs: update internal for building aapt/aapt2
This commit is contained in:
parent
d7e27ffc69
commit
4c39a9cd8f
38
INTERNAL.md
38
INTERNAL.md
@ -224,7 +224,7 @@ original as they were.
|
|||||||
### First we need the AOSP source
|
### First we need the AOSP source
|
||||||
|
|
||||||
As cheesy as it is, just follow this [downloading](https://source.android.com/source/downloading.html) link in order
|
As cheesy as it is, just follow this [downloading](https://source.android.com/source/downloading.html) link in order
|
||||||
to get the source downloaded. This is no small download, expect to use 80-100GB.
|
to get the source downloaded. This is no small download, expect to use 150-250GB.
|
||||||
|
|
||||||
After that, you need to build AOSP via this [documentation](https://source.android.com/source/building.html) guide. Now
|
After that, you need to build AOSP via this [documentation](https://source.android.com/source/building.html) guide. Now
|
||||||
we aren't building the entire AOSP package, the initial build is to just see if you are capable of building it.
|
we aren't building the entire AOSP package, the initial build is to just see if you are capable of building it.
|
||||||
@ -236,27 +236,25 @@ We check out a certain tag or branch. Currently we use
|
|||||||
|
|
||||||
### Including our modified `frameworks/base` package.
|
### Including our modified `frameworks/base` package.
|
||||||
|
|
||||||
There is probably a more automated way to do this, but for now just remove all the files in `frameworks/base`. Now
|
There is probably a more automated way to do this, but for now:
|
||||||
you can clone the modified repo from first step into this directory.
|
|
||||||
|
1. `cd frameworks/base`
|
||||||
|
2. `git remote add origin git@github.com:iBotPeaches/platform_frameworks_base.git`
|
||||||
|
3. `git fetch origin -v`
|
||||||
|
4. `git checkout origin/master`
|
||||||
|
|
||||||
### Building the aapt1 (Legacy) binary.
|
### Building the aapt1 (Legacy) binary.
|
||||||
|
|
||||||
The steps below are different per flavor and operating system. For cross compiling the Windows binary on Unix,
|
The steps below are different per flavor and operating system.
|
||||||
we lose the ability to quickly build just the aapt binary. So the Windows procedure builds the entire Sdk.
|
|
||||||
|
|
||||||
#### Unix
|
#### Linux / Windows
|
||||||
1. `source build/envsetup.sh`
|
1. `source build/envsetup.sh`
|
||||||
2. `lunch sdk-eng`
|
2. `lunch sdk-eng`
|
||||||
3. `make LOCAL_MULTILIB=64 USE_NINJA=false aapt`
|
3. `make LOCAL_MULTILIB=64 USE_NINJA=false aapt`
|
||||||
4. `strip out/host/linux-x86/bin/aapt`
|
4. `strip out/host/linux-x86/bin/aapt`
|
||||||
5. `strip out/host/linux-x86/bin/aapt_64`
|
5. `strip out/host/linux-x86/bin/aapt_64`
|
||||||
|
6. `strip out/host/windows-x86/bin/aapt.exe`
|
||||||
#### Windows
|
7. `strip out/host/windows-x86/bin/aapt_64.exe`
|
||||||
1. `source build/envsetup.sh`
|
|
||||||
2. `lunch sdk-eng`
|
|
||||||
3. `make LOCAL_MULTILIB=64 USE_NINJA=false aapt`
|
|
||||||
4. `strip out/host/windows-x86/bin/aapt.exe`
|
|
||||||
5. `strip out/host/windows-x86/bin/aapt_64.exe`
|
|
||||||
|
|
||||||
#### Mac
|
#### Mac
|
||||||
1. `source build/envsetup.sh`
|
1. `source build/envsetup.sh`
|
||||||
@ -264,22 +262,18 @@ we lose the ability to quickly build just the aapt binary. So the Windows proced
|
|||||||
3. `make LOCAL_MULTILIB=64 USE_NINJA=false aapt`
|
3. `make LOCAL_MULTILIB=64 USE_NINJA=false aapt`
|
||||||
4. `strip out/host/darwin-x86/bin/aapt_64`
|
4. `strip out/host/darwin-x86/bin/aapt_64`
|
||||||
|
|
||||||
32/64 bit binaries will be built for Unix and Windows.
|
32/64 bit binaries will be built for Linux and Windows.
|
||||||
|
|
||||||
### Building the aapt2 binary.
|
### Building the aapt2 binary.
|
||||||
|
|
||||||
The steps below are different per flavor and operating system. For cross compiling the Windows binary on Unix,
|
The steps below are different per flavor and operating system.
|
||||||
we lose the ability to quickly build just the aapt2 binary. So the Windows procedure builds the entire Sdk.
|
|
||||||
|
|
||||||
#### Unix
|
#### Linux / Windows
|
||||||
1. `make LOCAL_MULTILIB=64 USE_NINJA=false aapt2`
|
1. `make LOCAL_MULTILIB=64 USE_NINJA=false aapt2`
|
||||||
2. `strip out/host/linux-x86/bin/aapt2`
|
2. `strip out/host/linux-x86/bin/aapt2`
|
||||||
3. `strip out/host/linux-x86/bin/aapt2_64`
|
3. `strip out/host/linux-x86/bin/aapt2_64`
|
||||||
|
4. `strip out/host/windows-x86/bin/aapt2.exe`
|
||||||
#### Windows
|
5. `strip out/host/windows-x86/bin/aapt2_64.exe`
|
||||||
1. `make PRODUCT-sdk-win_sdk USE_NINJA=false`
|
|
||||||
2. `strip out/host/windows-x86/bin/aapt2.exe`
|
|
||||||
3. `strip out/host/windows-x86/bin/aapt2_64.exe`
|
|
||||||
|
|
||||||
#### Mac
|
#### Mac
|
||||||
1. `export ANDROID_JAVA_HOME=/Path/To/Jdk`
|
1. `export ANDROID_JAVA_HOME=/Path/To/Jdk`
|
||||||
|
Loading…
Reference in New Issue
Block a user