Questions tagged [nativescript-plugin]

NativeScript Plugins play a key role in NativeScript applications development, by adding features to the main framework. Frequently {NS} Plugins may expose some of the native APIs on platforms such as iOS & Android, while wrapping those for ease of use by JS/NS developers, or otherwise enhance NativeScript applications' features. They may also include certain libraries, or pre-made components, or otherwise packaged utilities for NativeScript.

249 questions
0
votes
1 answer

How to restart the NativeScript Angular app?

I'm looking for a solution that helps me, with performing a restart to the native app programmatically. I'm using the android platform only
0
votes
1 answer

Nativescript bluetooth and bluetooth v5.0

I'm currently looking into an issue where my companys app have some trouble establishing searches and connection to a cadence BLE peripheral. We're developing using nativescript@6.1.2 {N}6 and for the past long while we've used the…
0
votes
1 answer

Upgrading NativeScript app from 3 to 7, any advice?

I have an app built around 2015 which is in desperate need of an upgrade. I have tried following the upgrade instructions on https://docs.nativescript.org/releases/upgrade-instructions and after struggling to get the compiler working I am now…
0
votes
0 answers

Error while using nativescript-drop-down plugin

I am trying to create login page in Nativescript using Angular. I need to add dropdown in my login page. So I decided to use nativescript-drop-down for my requirement. Following versions are installed on my PC:- Nativescript Version - 7.0.10 NodeJS…
0
votes
1 answer

NativeScript Vue RadAutoCompleteTextView programmatically remove all tokens

There's a removeAllTokens method here and I've seen how to trigger another method from the docs, however it is for angular in the docs and I'm not sure how I can call the removeAllTokens method as I'm using NS-Vue. An insight would be appreciated
Ayudh
  • 1,673
  • 1
  • 22
  • 55
0
votes
1 answer

Missing refs while upgrading a Nativescript plugin (tns-core-modules → @nativescript/core migration)

I'm updating an existing plugin in order to make it compatible with the upcoming nativescript release. All references to the tns-core-modules package have been replaced with @nativescript/core. The released documentation says that the new libraries…
funder7
  • 1,622
  • 17
  • 30
0
votes
0 answers

Nativescript app crashes on adding nativescript-admob plugin

I'm trying to add ads in my ng-nativescript app using nativescript-admob plugin.I'm following this guide.I've done everything right but my app is crashing everytime. here is app.component.ts ` private androidBannerId: string =…
0
votes
0 answers

Nativescript-plugin-firebase (The “Swift Language Version” (SWIFT_VERSION))

Whenever I install 'nativescript-plugin-firebase' this plugin to my project, then I do tns run ios, this error comes up: Analyzing dependencies Downloading dependencies Generating Pods project Integrating client project Pod installation complete!…
kurt estacion
  • 497
  • 2
  • 8
  • 18
0
votes
1 answer

Nativescript firebase admob not firing some events after the first time on ios

In my code I have these functions: const preloadRewardAd = function() { console.log('preload reward ad'); firebase.admob.preloadRewardedVideoAd({ iosAdPlacementId: 'xxx', androidAdPlacementId: 'yyy', testing: config.adMobTesting, …
Nick Wiltshire
  • 633
  • 7
  • 15
0
votes
1 answer

Play fullscreen video using nativescript-exoplayer

I'm using nativescript with angular.I have successfully inserted the video player using nativescript-exoplayer plugin but can't find any way to play videos in fullscreen.How could I implement this?please help.
0
votes
2 answers

How to disable button when RadDataForm is not validated?

disable the button when form is not validated. {N} Playground A similar question was asked before. It says it's solved but what exactly was the decent solution? Did I miss something? Form validation documentation page is broken it has markdown…
0
votes
1 answer

Nativescript-vue implement font icon not working

I'm struggling on how to implement font icon in nativescript-vue, I decided to use font-awesome 5 and followed a bunch of different tutorials, unfortunately, It still now working for me. Some devs have an output of a question mark, but for me,…
0
votes
1 answer

nativescript-phone prevents Nativescript-contacts from returning

I have an app where I want to select a person from contacts and then send a text to that person. It works as expected for the first user, but after that the app never receives control after the contact is selected. I've isolated the problem to the…
David
  • 578
  • 3
  • 16
0
votes
1 answer

CocoaAsyncSocket and NativeScript issue

I'm writing a Nativescript Plugin for UDP comms based on CocoaAsyncSocket but my app is crashing when I try to perform any async operation in the context of this pod. It seems to be something related to the queues/threads on iOS x {N}, but I haven't…
0
votes
1 answer

nativescript-socketio does not connect to Node Js server

I am trying to connect to the server socket (Node Js) and I am unable to do so. You did the tutorial at https://socket.io/get-started/chat/ and it works correctly. But, when I do it by nativescript or a web client like…