React Native - CardinalComm SDK 60 Warning Template - javascript

We recently received warning from google regarding the data collection issue(See the screenshot).
screenshot
Based on some posts from braintree, upgrading the android SDK to the latest version(6.5.0) should resolve this issue. But we are using react native and implemented braintree dropin with a dependence whose owner is no longer maintain this library.
Does anyone implemented braintree dropin on react native have successfully solve this google warning?

Related

Is Web3js library fully functional in React Native?

I am not able to use web3js library in react native application. Calling the balance for account :
web3.eth.getBalance("0x407d73d8a49eeb85d32cf465507dd71d507100c1").then(console.log);
returns the result, but immediatelly cause the errors in logs, which I cant catch.
Another problem is to encrypt the wallet, where it seems like some cryptolibs are missing in react native:
web3.eth.accounts.wallet.encrypt(password);
Web3js error [Error: Secure random number generation is not supported by this browser.Use Chrome, Firefox or Internet Explorer 11]
Does anybody succesfully use Web3js lib directly in React Native? Or the only way is to use Webview and javascript?
Many thanks

React Native: How to get upload speed and network signal strength?

I am currently tasked with developing an application that gives the user various information and details about his network connection using React Native. The main issue is that I am unable to find a library or method to get the user's upload speed or signal strength.
I am using these libraries to get the download speed and network information:
react-native-network-bandwith-speed
#react-native-community/netinfo
These are working just fine.
I found many APIs that allow the integration of fast.com or speedtest.net, but these are not compatible with React Native.
The only thing(s) missing is the upload speed, and signal strength. Any help would be greatly appreciated.

How to handle all files access and MANAGE_EXTERNAL_STORAGE permission by React Native?

I have created an app using React native. In my Application i have implemented a feature that use write or download pdf and xlsx file in the externalStorage of the device.this feature is working properly until the Android 10. But on Android 11, app is crashing so i read the documentation of android and where i found that in android 11 has introduced the new concept of all files access and it will managed by the new permission which is MANAGE_EXTERNAL_STORAGE. So i am unable to implement this by the react native. so please suggest the solutions or tips to resolve it.

Warning you must upgrade to the latest version of google-spreadsheet

I am trying to implement a project when I get some data from a google spreadsheet and insert into a database. Inserting part is not important for me yet. When I am trying to get the data from google spreadsheet document I get this Warning!
WARNING! You must upgrade to the latest version of google-spreadsheet!
Google's deprecation date for the v3 sheets API is March 3rd 2020
Bad news - this version of this module will stop working on that date :(
Good news - the new version of the module uses the newer v4 api :)
However, there are breaking changes, so please see the docs site
https://theoephraim.github.io/node-google-spreadsheet
It's still give me the data, but I get the warning.
Somebody who knows how do i get rid of that warning?
The Google Sheets API has been upgrade from version v3 to version v4
What does it mean?
It means that certain method names, parameters and building of the authentication client have changed.
If you are using an old code based on v3, so building the authentication client as
const sheets = google.sheets({version: 'v3', auth});, your code will stop working in the near future
While Google specifies March 3rd 2020 as the deprecation date, there is still some grace period, but your code could stop working any time!
So, please update your code by changing to const sheets = google.sheets({version: 'v3', auth});
Adapt other parts of the authentication flow if necessary to the new procedure provided in the quickstart for v4
Go through the references to see if any of the requests you are using has changed and adapt as necessary.

Implement admob eu-consent in a react-native app

Has anybody successfully implemented the Admob eu-consent library on a react-native android app? or managed to send the user consent to Admob without the library? How?
I'm using the react-native-firebase module for Admob, unfortunately the developers there aren't considering a solution for this, yet.
After Admob released this library our eCPM dropped at 50% for all users (including for US users).

Categories

Resources