Garnik
Garnik
+1, they have updated ui, long poll won't work anymore, plugin needs changes
@Archez while that's true and this change has a security implications, ApplicationSettings are not meant to be a storage for secure information, it's meant to be used to store...well settings....
In Angular you can set the values like this (silencing TS errors with `any`) ```html ``` ```typescript public playerLoaded(args: any) { const player = args.object; if (isIOS) { player._playerController.entersFullScreenWhenPlaybackBegins =...
```typescript private resolveMediaType(path: string): string | CustomError { if (!path) { return new CustomError( this.translateService.instant('services.noFileProvided') ); } try { if (isAndroid) { const cr = Application.android.context.getContentResolver(); const file = new...
@pandabuilt `declare const global: any, java: any, PHAssetMediaType: any;` those are available at runtime
This has been happening to me as well. Once this freeze happens, all the NativeScript apps within the emulator stop working properly. For me there are 2 kinds of freezes:...
@cjohn001 I wasn't able to find the cause, but a workaround is to restart the emulator, not the process but the device, just holding down the power button and clicking...
@NathanWalker definitely a regression. I've just noticed this in our live apps that used to work properly on NS7. EDIT: I have to clarify that this is happening to me...
As a temporary workaround that works for me, I am using this: ```typescript @HostListener('unloaded') cleanup() { if (!this.routerExtensions.canGoBackToPreviousPage()) { this.ngOnDestroy() } } ``` You could also do the same with...