This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Hey, this is going to basically explain how to push frameworks base without cloning it from aosp-mirror | |
| This has been tested when frameworks base was on the android-11.0.0_r32 tag and may not work on newer ones. | |
| So lets begin | |
| Step 1: | |
| Clone any roms or the aosp frameworks_base | |
| NOTE: If you do clone frameworks_base from aosp ( https://android.googlesource.com/platform/frameworks/base/ ), cd into the directory you cloned it in and do "git checkout android-11.0.0_r[LASTEST TAG HERE]" and yes you have to replace "[LASTEST TAG HERE]" with the lastest tag number | |
| Step 2: | |
| cd into the directory you cloned the repo into |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| wget -c --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" https://download.oracle.com/otn-pub/java/jdk/12.0.2+10/e482c34c86bd4bf8b56c0b35558996b9/jdk-12.0.2_linux-x64_bin.tar.gz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <device name="Android"> | |
| <item name="none">0</item> | |
| <item name="screen.on">103</item> | |
| <item name="screen.full">300</item> | |
| <array name="cpu.clusters.cores"> | |
| <value>4</value> | |
| <value>4</value> | |
| </array> | |
| <array name="cpu.core_speeds.cluster0"> |