File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
EasyFlipView/src/main/java/com/wajahatkarim3/easyflipview Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -467,7 +467,11 @@ public boolean dispatchTouchEvent(MotionEvent ev) {
467
467
468
468
@ Override
469
469
public boolean onTouchEvent (MotionEvent event ) {
470
- return gestureDetector .onTouchEvent (event );
470
+ if (isEnabled () && flipOnTouch ) {
471
+ return gestureDetector .onTouchEvent (event );
472
+ } else {
473
+ return super .onTouchEvent (event );
474
+ }
471
475
}
472
476
473
477
/**
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ buildscript {
8
8
}
9
9
10
10
dependencies {
11
- classpath ' com.android.tools.build:gradle:4.0.0-beta03 '
11
+ classpath ' com.android.tools.build:gradle:4.1.0 '
12
12
classpath ' com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
13
13
classpath ' com.github.dcendents:android-maven-gradle-plugin:1.4.1'
14
14
}
Original file line number Diff line number Diff line change 1
- # Fri Oct 26 13:11:27 IST 2018
1
+ # Thu Oct 22 17:08:39 PKT 2020
2
2
distributionBase =GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-6.1.1-all .zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.5-bin .zip
You can’t perform that action at this time.
0 commit comments