nativescript v7.3.0 Release Notes

Release Date: 2021-02-27 // about 3 years ago
  • ๐Ÿ› Bug Fixes

    • core: AndroidTransitionType symbol export handling (#9252) (ac7f041)

    ๐Ÿ”‹ Features

    • android: types for API Level 30 and cleanup (#9219) (ebcc0e2)

    ๐Ÿ’ฅ BREAKING CHANGES

    • core: AndroidTransitionType is now a static member of the Transition class.

    BEFORE:

    import { AndroidTransitionType } from '@nativescript/core/ui/transition';
    

    AFTER:

    import { Transition } from '@nativescript/core';
    Transition.AndroidTransitionType.enter; // etc.
    
    • android: If you were usingnative.Array for any of your own custom plugin typings, you can switch them to androidNative.Array

    BEFORE:

    public writeAsync(path: string, bytes: native.Array<number>) ...
    

    AFTER:

    public writeAsync(path: string, bytes: androidNative.Array<number>) ...