Skip to content

Commit abc7ab4

Browse files
authored
feat: add android 35 support (#5811)
1 parent bf9a6cd commit abc7ab4

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

lib/common/mobile/emulator-helper.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { injector } from "../yok";
55
export class EmulatorHelper implements Mobile.IEmulatorHelper {
66
// https://developer.android.com/guide/topics/manifest/uses-sdk-element
77
public mapAndroidApiLevelToVersion = {
8+
"android-35": "15.0.0",
89
"android-34": "14.0.0",
910
"android-33": "13.0.0",
1011
"android-32": "12.0.0",

packages/doctor/src/android-tools-info.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export class AndroidToolsInfo implements NativeScriptDoctor.IAndroidToolsInfo {
3131
"android-32",
3232
"android-33",
3333
"android-34",
34+
"android-35",
3435
];
3536

3637
const isRuntimeVersionLessThan = (targetVersion: string) => {

packages/doctor/test/android-tools-info.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ describe("androidToolsInfo", () => {
6969
"android-32",
7070
"android-33",
7171
"android-34",
72+
"android-35",
7273
];
7374
}
7475
},
@@ -138,7 +139,7 @@ describe("androidToolsInfo", () => {
138139

139140
it("runtime 8.2.0 should support android-17 - android-34", () => {
140141
const min = 17;
141-
const max = 34;
142+
const max = 35;
142143
assertSupportedRange("8.2.0", min, max);
143144
assertSupportedRange("8.3.0", min, max);
144145
});

0 commit comments

Comments
 (0)