plugins
plugins copied to clipboard
@nativescript plugins to help with your developments.
While debugging, we found that in the promptForPin() method in the android code for biometrics, it's checking for the wrong property. https://github.com/NativeScript/plugins/blob/a503c40264e6704cbf87ccaaa76da5b8486b4e46/packages/biometrics/index.android.ts#L426 `if (!options?.pinFallBack) {` should be `if (!options?.pinFallback) {`...
On Android, using GoogleMaps.CameraUpdate.fromCameraPosition() to update the map's camera, especially when including bearing, results in a java.lang.NullPointerException from the native Google Maps SDK. **Steps to Reproduce** - Set up a...
I've been trying to add ADMOB to a test app for several days without success. Steps I've taken: 1) Add "@nativescript/google-mobile-ads": "^5.0.3" 2) In AndroidManifest.xml (./App_Resources/Android/src/main) add ``` ... ......
Hi. I have a problem with facebook login on IOS when i build to production. The login is working fine when i'm building the app with "ns debug ios" to...
I'm making an app where I need the contact list from the phone, including images. I'm using `@nativescript/contacts` and `Contacts.getAllContacts(['name', 'phoneNumbers', 'photo'])`. This is painfully slow to load, especially on...
#### Description While using iOS 18.3.1, I encountered an issue with the `verifyBiometric` function where enabling `pinFallback` prevents retrieval of the stored secret. #### Code Example ```javascript this._BiometricAuth.verifyBiometric({ title: 'Authenticate',...
I would like to have the option to not center the map on a marker that is tapped. I am using a map without scrolling/zooming function where the user can...
When showFilter = true, if Enter text to filter, after that, touch close button, open again, plugin can not keep array input, see video for more detail https://github.com/user-attachments/assets/8ae99a94-b2f4-4f41-99ef-e4a4d5b1412a
I call `watchLocation` properly after `enableLocationRequest` but I am getting `Cannot watch location. Call "enableLocationRequest" first` error message. Other weird behavior: - It seems even if I allow the location...