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
First go here: | |
https://wiki.codeaurora.org/xwiki/bin/QAEP/release | |
This site gives information about all msm soc release details with tag + android version | |
Search your msm here.. Check the latest one and look for correct android version and mark that tag. | |
Now open one of the following links (dependent on your linux kernel version) |
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
# ------------------------------------ | |
# USEFUL OrangeFox RECOVERY FLAGS | |
# | |
# by @DarthJabba9 https://gitlab.com/OrangeFox/vendor/recovery/-/blob/fox_12.1/orangefox_build_vars.txt | |
# | |
# Custom build VARs for the OrangeFox Recovery, fox_12.1 branch | |
# | |
# These build vars should be declared - in a shell script (eg, in "vendorsetup.sh"), or at the command line - before building | |
# | |
# Copyright (C) 2019-2024 OrangeFox Recovery Project |
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
Invoke-WebRequest https://github.com/kinguser981/Personal_files/releases/download/11312652930/my_edit.jpg -OutFile c:\my_edit.jpg | |
$setwallpapersrc = @" | |
using System.Runtime.InteropServices; | |
public class Wallpaper | |
{ | |
public const int SetDesktopWallpaper = 20; | |
public const int UpdateIniFile = 0x01; | |
public const int SendWinIniChange = 0x02; | |
[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)] |