mirror of
https://github.com/iBotPeaches/Apktool.git
synced 2024-11-23 04:30:04 +00:00
feat: support for Android Baklava Developer Preview 1 (#3728)
This commit is contained in:
parent
1eb1daf12a
commit
f85f9b3b60
@ -180,6 +180,8 @@ public class ApkInfo implements YamlSerializable {
|
||||
case "VANILLAICECREAM":
|
||||
case "VANILLA_ICE_CREAM":
|
||||
return ResConfigFlags.SDK_VANILLA_ICE_CREAM;
|
||||
case "BAKLAVA":
|
||||
return ResConfigFlags.SDK_BAKLAVA;
|
||||
case "SDK_CUR_DEVELOPMENT":
|
||||
return ResConfigFlags.SDK_DEVELOPMENT;
|
||||
default:
|
||||
|
@ -571,6 +571,10 @@ public class ResConfigFlags {
|
||||
public final static byte SDK_UPSIDEDOWN_CAKE = 34;
|
||||
public final static byte SDK_VANILLA_ICE_CREAM = 35;
|
||||
|
||||
// AOSP changed Build IDs during QPR2 of API 34 (Upsidedown Cake), restarting at A.
|
||||
// However, API 35 (Vanilla) took letter A (AP2A), so we start at B.
|
||||
public final static byte SDK_BAKLAVA = 36;
|
||||
|
||||
// AOSP has this as 10,000 for dev purposes.
|
||||
// platform_frameworks_base/commit/c7a1109a1fe0771d4c9b572dcf178e2779fc4f2d
|
||||
public final static int SDK_DEVELOPMENT = 10000;
|
||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user