
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
react-native-vibration
Advanced tools
Vibration module wrapping VibrationIOS and adding support for android
Vibration module with support for android, based on the pull request https://github.com/facebook/react-native/pull/2794 from @christopherdro. For iOS it wraps VibrationIOS. On iOS the duration can't be specified. If you don't specify a duration on Android 300ms will be used.
npm i --save react-native-vibration
android/setting.gradle
...
include ':ReactNativeVibration', ':app'
project(':ReactNativeVibration').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vibration/android')
android/app/build.gradle
...
dependencies {
...
compile project(':ReactNativeVibration')
}
import com.eguma.vibration.Vibration; // <--- 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 Vibration()) // <------ add here
.setUseDeveloperSupport(BuildConfig.DEBUG)
.setInitialLifecycleState(LifecycleState.RESUMED)
.build();
mReactRootView.startReactApplication(mReactInstanceManager, "example", null);
setContentView(mReactRootView);
}
......
}
'use strict';
var React = require('react-native');
var Vibration = require('react-native-vibration');
var {
AppRegistry,
StyleSheet,
Text,
TouchableHighlight,
View,
} = React;
var VibrationExample = React.createClass({
onPress() {
Vibration.vibrate(500);
},
render() {
return (
<View style={styles.container}>
<TouchableHighlight
onPress={this.onPress}
style={styles.button}
>
<Text>
Click me to vibrate!
</Text>
</TouchableHighlight>
</View>
);
}
});
var styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
button: {
padding: 20,
justifyContent: 'center',
alignItems: 'center',
borderColor: 'black',
borderRadius: 5,
borderWidth: 1,
}
});
AppRegistry.registerComponent('VibrationExample', () => VibrationExample);
FAQs
Vibration module wrapping VibrationIOS and adding support for android
The npm package react-native-vibration receives a total of 300 weekly downloads. As such, react-native-vibration popularity was classified as not popular.
We found that react-native-vibration 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.