fix(YouTube Music): Resolve playback issues, change recommended app target to 7.29.52 (#5813)

This commit is contained in:
LisoUseInAIKyrios
2025-09-13 19:12:00 +04:00
committed by GitHub
parent 850c13e98e
commit a53b00dd51
23 changed files with 135 additions and 230 deletions

View File

@@ -1,27 +0,0 @@
package app.revanced.extension.music.spoof;
/**
* @noinspection unused
*/
public class SpoofClientPatch {
private static final int CLIENT_TYPE_ID = 26;
private static final String CLIENT_VERSION = "6.21";
private static final String DEVICE_MODEL = "iPhone16,2";
private static final String OS_VERSION = "17.7.2.21H221";
public static int getClientId() {
return CLIENT_TYPE_ID;
}
public static String getClientVersion() {
return CLIENT_VERSION;
}
public static String getClientModel() {
return DEVICE_MODEL;
}
public static String getOsVersion() {
return OS_VERSION;
}
}