github NativeScript/NativeScript 7.3.0-core
@nativescript/core@7.3.0

latest releases: 8.7.2-core, 5.0.21-webpack, 5.0.20-webpack...
3 years ago

Bug Fixes

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

Features

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

  • @nativescript/types 7.3.0: includes Android API Level 30 typings

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>) ...

Don't miss a new NativeScript release

NewReleases is sending notifications on new releases.