Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
react-native-google-location
Advanced tools
Google Play Services Location Module for React Native Android.
Location acquisition through Google Play Services.
Check here
npm i --save react-native-google-location
Then you must install the native dependencies. You can use rnpm
to
add native dependencies automatically (you still have to add permissions to your Manifest file, see "Add Permissions and used Google API to your Project"):
rnpm link
or do it manually as described below:
android/settings.gradle
...
include ':react-native-google-location', ':app'
project(':react-native-google-location').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-google-location/android/app')
android/app/build.gradle
...
dependencies {
...
compile project(':react-native-google-location')
}
Newer versions of React Native
...
import com.timhagn.rngloc.RNGLocation; // <--- import
...
public class MainActivity extends ReactActivity {
....
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new RNGLocation() // <---- and This!
);
}
}
Older versions of React Native
import com.timhagn.rngloc.RNGLocation; // <--- import
public class MainActivity extends Activity implements DefaultHardwareBackBtnHandler {
......
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mReactRootView = new ReactRootView(this);
mReactInstanceManager = ReactInstanceManager.builder()
.setApplication(getApplication())
.setBundleAssetName("index.android.bundle")
.setJSMainModuleName("index.android")
.addPackage(new MainReactPackage())
.addPackage(new RNGLocation()) // <-- Register package here
.setUseDeveloperSupport(BuildConfig.DEBUG)
.setInitialLifecycleState(LifecycleState.RESUMED)
.build();
mReactRootView.startReactApplication(mReactInstanceManager, "example", null);
setContentView(mReactRootView);
}
......
}
Add this to your AndroidManifest file;
// file: android/app/src/main/AndroidManifest.xml
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
Make sure this goes at the bottom of the <application>
tag.
<uses-library android:name="com.google.android.maps" />
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
'use strict';
var React = require('react-native');
// Import react-native-google-location
import RNGLocation from 'react-native-google-location';
var {
Component,
AppRegistry,
// DeviceEventEmitter for registering of the Callback-Listener
DeviceEventEmitter,
StyleSheet,
Text,
View,
} = React;
export default class RNGLocationExample extends Component {
constructor(props) {
super(props);
// Create and Reset initial State Longitude (lng) and Latitude (lat)
this.state = {
lng: 0.0,
lat: 0.0,
};
if (!this.evEmitter) {
// Register Listener Callback - has to be removed later
this.evEmitter = DeviceEventEmitter.addListener('updateLocation', this.onLocationChange.bind(this));
// Initialize RNGLocation
RNGLocation.getLocation();
}
}
onLocationChange (e: Event) {
this.setState({
lng: e.Longitude,
lat: e.Latitude
});
}
componentWillUnmount() {
// Stop listening for Events
this.evEmitter.remove();
}
render() {
return (
<View style={styles.container}>
<Text style={styles.location}>
Lng: {this.state.lng} Lat: {this.state.lat}
</Text>
</View>
);
}
}
var styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
location: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
}
});
AppRegistry.registerComponent('RNGLocationExample', () => RNGLocationExample);
FAQs
Google Play Services Location Module for React Native Android.
We found that react-native-google-location 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
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.