You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
***core:** AndroidTransitionType symbol export handling ([#9252](https://github.com/NativeScript/NativeScript/issues/9252)) ([ac7f041](https://github.com/NativeScript/NativeScript/commit/ac7f041deada46bfe3bbd8359c02e9224155efd8))
7
+
8
+
9
+
### Features
10
+
11
+
***android:** types for API Level 30 and cleanup ([#9219](https://github.com/NativeScript/NativeScript/issues/9219)) ([ebcc0e2](https://github.com/NativeScript/NativeScript/commit/ebcc0e2cc0e14d2042582901d36d4cfece7fae58))
12
+
13
+
14
+
### BREAKING CHANGES
15
+
16
+
***core:** AndroidTransitionType is now a static member of the Transition class.
17
+
18
+
BEFORE:
19
+
20
+
```
21
+
import { AndroidTransitionType } from '@nativescript/core/ui/transition';
22
+
```
23
+
24
+
AFTER:
25
+
26
+
```
27
+
import { Transition } from '@nativescript/core';
28
+
Transition.AndroidTransitionType.enter; // etc.
29
+
```
30
+
31
+
***android:** If you were using`native.Array` for any of your own custom plugin typings, you can switch them to `androidNative.Array`
32
+
33
+
BEFORE:
34
+
35
+
```
36
+
public writeAsync(path: string, bytes: native.Array<number>) ...
37
+
```
38
+
39
+
AFTER:
40
+
41
+
```
42
+
public writeAsync(path: string, bytes: androidNative.Array<number>) ...
0 commit comments