https://github.com/raphaelthegreat/android_device_nokia_pnx_sprout-twrp
https://github.com/raphaelthegreat/android_device_nokia_pnx_sprout-twrp
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/raphaelthegreat/android_device_nokia_pnx_sprout-twrp
- Owner: raphaelthegreat
- Created: 2021-09-29T13:39:24.000Z (almost 5 years ago)
- Default Branch: android-10
- Last Pushed: 2021-09-29T13:40:39.000Z (almost 5 years ago)
- Last Synced: 2025-06-04T14:17:01.816Z (about 1 year ago)
- Language: Makefile
- Size: 10.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Device Tree for Nokia 8.1
The Nokia 8.1, also known as the Nokia X7 in China, is a Nokia-branded mid-range smartphone by HMD Global. It was announced on 6 December 2018.
| Basic | Spec Sheet |
| -----------------------:|:------------------------------------------------------------------------------------------------------------------------------ |
| CPU | Octa-core (2x2.2 GHz 360 Gold & 6x1.7 GHz Kryo 360 Silver) |
| Chipset | Qualcomm SDM710 Snapdragon 710 (10 nm) |
| GPU | Adreno 616 |
| Memory | 4/6 GB RAM |
| Shipped Android Version | Android 9.0 |
| Last Android Version | Android 11 |
| Storage | 64/128 GB |
| Battery | Li-Ion 3500 mAh, non-removable |
| Display | 1080 x 2280 pixels, 19:9 ratio (~408 ppi density) |
| Camera (Back) | 12 MP, f/1.8, 1/2.55", 1.4µm, dual pixel PDAF, OIS |
| Camera (Front) | 20 MP, f/2.0, (wide), 1/3", 0.9µm |
## Device picture

## Compile
First repo init the TWRP 10.0 tree (and necessary qcom dependencies):
```
mkdir ~/android/twrp-10.0
cd ~/android/twrp-10.0
repo init -u git://github.com/minimal-manifest-twrp/platform_manifest_twrp_omni.git -b twrp-10.0
mkdir -p .repo/local_manifests
curl https://raw.githubusercontent.com/TeamWin/buildtree_manifests/master/min-omni-10.0/qcom.xml > .repo/local_manifests/qcom.xml
```
Then add to a local manifest (if you don't have .repo/local_manifest then make that directory and make a blank file and name it something like twrp.xml):
```xml
```
Now you can sync your source:
```
repo sync
```
To automatically make the twrp installer, you need to import this commit in the build/make path: https://gerrit.omnirom.org/#/c/android_build/+/33182/
Finally execute these:
```
. build/envsetup.sh
export LC_ALL=C
lunch omni_NB1-eng
mka adbd recoveryimage
```