Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
ionic-radar
Advanced tools
Radar is a location platform for mobile apps. This Ionic plugin let's you use Radar features in your Ionic application.
ionic cordova plugin add ionic-radar
For Android, under src -> android -> com -> Radar
in Radar.java
, add your Radar Key in the initialize method
public void initialize(CordovaInterface cordova, CordovaWebView webView) {
super.initialize(cordova, webView);
Context context = this.cordova.getActivity().getApplicationContext();
Radar.initialize(context, "your_radar_key");
Log.d(TAG, "Initializing Radar Plugin");
}
For iOS, under ios
in RadarWrapper.swift
, add your Radar Key in the pluginInitialize function
override func pluginInitialize() {
Radar.initialize(publishableKey: "your_radar_key");
}
On whichever page you want to use the Radar plugin, you can declare cordova
just below your exports, as follows:
declare var cordova: any;
When you want to begin tracking the user's location in the background, simply call the start tracking method:
cordova.plugins.RadarPlugin.startTracking(value => {
});
To stop background location tracking, run:
cordova.plugins.RadarPlugin.stopTracking(value => {
});
If you want to give users a customized user ID rather than the one generated by Radar, you can do it by running the following:
cordova.plugins.RadarPlugin.stopTracking(userID, value => {
});
Check if the app has location permission:
cordova.plugins.RadarPlugin.checkPermissions();
Ask the user for location permission:
cordova.plugins.RadarPlugin.checkPermissions();
FAQs
Ionic plugin for Radar, a location platform for mobile apps.
We found that ionic-radar demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.