mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-07 10:35:52 +01:00
ResConfigFlags: swapped screenLayout and sdkVersion.
This commit is contained in:
parent
2f28ef78f3
commit
a28f40692a
@ -37,10 +37,11 @@ public class ResConfigFlags {
|
|||||||
|
|
||||||
public final short screenWidth;
|
public final short screenWidth;
|
||||||
public final short screenHeight;
|
public final short screenHeight;
|
||||||
public final byte screenLayout;
|
|
||||||
|
|
||||||
public final short sdkVersion;
|
public final short sdkVersion;
|
||||||
|
|
||||||
|
public final byte screenLayout;
|
||||||
|
|
||||||
private final String mQualifiers;
|
private final String mQualifiers;
|
||||||
|
|
||||||
public ResConfigFlags() {
|
public ResConfigFlags() {
|
||||||
@ -56,15 +57,15 @@ public class ResConfigFlags {
|
|||||||
inputFlags = KEYSHIDDEN_ANY | NAVHIDDEN_ANY;
|
inputFlags = KEYSHIDDEN_ANY | NAVHIDDEN_ANY;
|
||||||
screenWidth = 0;
|
screenWidth = 0;
|
||||||
screenHeight = 0;
|
screenHeight = 0;
|
||||||
screenLayout = SCREENLONG_ANY | SCREENSIZE_ANY;
|
|
||||||
sdkVersion = 0;
|
sdkVersion = 0;
|
||||||
|
screenLayout = SCREENLONG_ANY | SCREENSIZE_ANY;
|
||||||
mQualifiers = "";
|
mQualifiers = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
public ResConfigFlags(short mcc, short mnc, char[] language, char[] country,
|
public ResConfigFlags(short mcc, short mnc, char[] language, char[] country,
|
||||||
byte orientation, byte touchscreen, short density, byte keyboard,
|
byte orientation, byte touchscreen, short density, byte keyboard,
|
||||||
byte navigation, byte inputFlags, short screenWidth,
|
byte navigation, byte inputFlags, short screenWidth,
|
||||||
short screenHeight, byte screenLayout, short sdkVersion) {
|
short screenHeight, short sdkVersion, byte screenLayout) {
|
||||||
this.mcc = mcc;
|
this.mcc = mcc;
|
||||||
this.mnc = mnc;
|
this.mnc = mnc;
|
||||||
this.language = language;
|
this.language = language;
|
||||||
@ -77,8 +78,8 @@ public class ResConfigFlags {
|
|||||||
this.inputFlags = inputFlags;
|
this.inputFlags = inputFlags;
|
||||||
this.screenWidth = screenWidth;
|
this.screenWidth = screenWidth;
|
||||||
this.screenHeight = screenHeight;
|
this.screenHeight = screenHeight;
|
||||||
this.screenLayout = screenLayout;
|
|
||||||
this.sdkVersion = sdkVersion;
|
this.sdkVersion = sdkVersion;
|
||||||
|
this.screenLayout = screenLayout;
|
||||||
mQualifiers = generateQualifiers();
|
mQualifiers = generateQualifiers();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -255,7 +255,7 @@ public class ARSCDecoder {
|
|||||||
|
|
||||||
return new ResConfigFlags(mcc, mnc, language, country, orientation,
|
return new ResConfigFlags(mcc, mnc, language, country, orientation,
|
||||||
touchscreen, density, keyboard, navigation, inputFlags,
|
touchscreen, density, keyboard, navigation, inputFlags,
|
||||||
screenWidth, screenHeight, screenLayout, sdkVersion);
|
screenWidth, screenHeight, sdkVersion, screenLayout);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void addMissingResSpecs() throws AndrolibException {
|
private void addMissingResSpecs() throws AndrolibException {
|
||||||
|
Loading…
Reference in New Issue
Block a user