This file contains 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
If you end up with a dm-verity warning on your Titan, download your stock rom and use | |
SP Flash Tool v5.2152 to flash using FIRMWARE UPDATE method, this will clear the warning | |
and let you start fresh. |
This file contains 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
Download and install https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi | |
wsl --install -d Ubuntu | |
wsl --set-default-version 2 | |
Open Ubuntu | |
sudo apt update |
This file contains 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
Unlock your Titan. | |
Obtain Magisk.apk [Magisk 25.2](https://github.com/topjohnwu/Magisk/releases/download/v25.2/Magisk-v25.2.apk) | |
Obtain Stock Rom | |
Extract Stock Rom and copy boot.img to your Titan. | |
Run Magisk on boot.img, make sure to include vbmeta patch. Do not check this for Titan Pocket and Titan Slim | |
Copy new Magisk boot.img to your computer | |
Boot into bootloader mode (adb reboot fastboot or Power + Volume Up while booting, once booted into recovery, if you get | |
a No Command screen, hold power and tap volume up, boot to bootloader) | |
fastboot flash boot magisk-boot.img |
This file contains 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
LOCAL_PATH := $(call my-dir) | |
include $(CLEAR_VARS) | |
LOCAL_MODULE := lua | |
LOCAL_CFLAGS := -DLUA_ANSI | |
LOCAL_SRC_FILES := \ | |
$(subst $(LOCAL_PATH)/,, \ | |
$(wildcard $(LOCAL_PATH)/*.c)) | |
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH) |
This file contains 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
LOCAL_PATH := $(call my-dir) | |
include $(CLEAR_VARS) | |
LOCAL_MODULE := sqlite3 | |
LOCAL_SRC_FILES := \ | |
$(subst $(LOCAL_PATH)/,, \ | |
$(wildcard $(LOCAL_PATH)/*.c)) | |
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH) |
This file contains 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
LOCAL_PATH := $(call my-dir) | |
include $(CLEAR_VARS) | |
LOCAL_MODULE := protobuf | |
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH) | |
LOCAL_SRC_FILES := \ | |
$(subst $(LOCAL_PATH)/,, \ | |
$(wildcard $(LOCAL_PATH)/google/protobuf/*.cc) \ |