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.
github.com/championswimmer/simplefingergestures_android_library
An android library to implement simple 1 or 2 finger gestures easily
The library is inside the libSFG folder
The sample App is inside the sample folder
private SimpleFingerGestures mySfg = new SimpleFingerGestures();
mySfg.setOnFingerGestureListener(new SimpleFingerGestures.OnFingerGestureListener() {
@Override
public boolean onSwipeUp(int fingers, long gestureDuration, double gestureDistance) {
grtv.setText("swiped " + fingers + " up");
return false;
}
@Override
public boolean onSwipeDown(int fingers, long gestureDuration, double gestureDistance) {
grtv.setText("swiped " + fingers + " down");
return false;
}
@Override
public boolean onSwipeLeft(int fingers, long gestureDuration, double gestureDistance) {
grtv.setText("swiped " + fingers + " left");
return false;
}
@Override
public boolean onSwipeRight(int fingers, long gestureDuration, double gestureDistance) {
grtv.setText("swiped " + fingers + " right");
return false;
}
@Override
public boolean onPinch(int fingers, long gestureDuration, double gestureDistance) {
grtv.setText("pinch");
return false;
}
@Override
public boolean onUnpinch(int fingers, long gestureDuration, double gestureDistance) {
grtv.setText("unpinch");
return false;
}
@Override
public boolean onDoubleTap(int fingers) {
return false;
}
});
And finally set this object onto your view's OnTouchListener
myView.setOnTouchListener(mySfg);
This can be set as the OnTouchListener of any object that is derived from android.view.View
The easiest way to add to your project is the download the latest zip from the Releases tab. Inside you'll find a compiled library in .jar format that you can just drop in to the libs folder of your Android app project for it to get automatically added as a library
Also you can add it using jitpack maven distribution.
Add the jitpack maven repository
repositories {
jcenter()
maven {
url "https://jitpack.io"
}
}
Add the dependency
dependencies {
compile 'in.championswimmer:SimpleFingerGestures_Android_Library:1.2'
}
Find documentation at
http://championswimmer.github.io/SimpleFingerGestures_Android_Library/documentation
FAQs
Unknown package
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.