7 Commits

Author SHA1 Message Date
4c705967d2 fix(android): targetSdk 34 registerBroadcastReceiver (#10585) 2024-07-12 10:56:29 -07:00
779d79285d feat(core): ability to embed into platform host projects (#10465) 2024-07-01 16:47:33 -07:00
5359153a11 fix(application): wrap native classes in initialisers (#10335)
fixes: #10334
2023-07-10 09:44:45 +02:00
029ed4fe5d fix(Application): getNativeApplication wrong ActivityThread (#10326)
fixes #10325
2023-06-23 09:16:54 -07:00
0873894a27 fix: early access to context and packageName (#10321) 2023-06-22 11:46:08 -07:00
e430555cb2 fix(Application): inBackground handling & missing once (#10307) 2023-06-14 13:09:41 -07:00
f64355ba7a refactor: improved core barrel exports and Application class (#10286)
BREAKING CHANGES:

`Application.orientation` is no longer a function.

Migration: Remove `()` from the `Application.orientation()` call:
```diff
import { Application } from "@nativescript/core";

-console.log(Application.orientation());
+console.log(Application.orientation);
```


`Application.systemAppearance` is no longer a function.

Migration: Remove `()` from the `Application.systemAppearance()` call:
```diff
import { Application } from "@nativescript/core";

-console.log(Application.systemAppearance());
+console.log(Application.systemAppearance);
```
2023-05-25 07:45:39 -07:00