You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you want to use the ScaleGestureDetector and/or the gesture detectors
33
19
from this project, please read my tutorial: [code.almeros.com/android-multitouch-gesture-detectors](http://code.almeros.com/android-multitouch-gesture-detectors)
34
20
35
-
### Extending
21
+
#### Example application
22
+
23
+
If you like to just dive into a working example, please check out
24
+
[the example app (GitHub)](https://github.com/Almeros/android-gesture-detectors-example).
25
+
26
+
27
+
Dependencies / Downloads
28
+
------------------------
29
+
You can always just download a zip from GitHub and add its contents to your project. But dependency
30
+
management might be easier for you using Gradle and jitpack.io. Include the following in your project:
31
+
32
+
#### build.gradle root
36
33
37
-
If you want to extend this framework with new gesture detectors please read
38
-
my tutorial about that here: *coming soon*
34
+
buildscript {
35
+
repositories {
36
+
...
37
+
maven { url 'https://jitpack.io' }
38
+
}
39
+
...
40
+
}
41
+
42
+
allprojects {
43
+
repositories {
44
+
...
45
+
maven { url 'https://jitpack.io' }
46
+
}
47
+
}
48
+
49
+
#### build.gradle app
50
+
51
+
dependencies {
52
+
// Note: Change 'v1.0' to whatever release you need or 'master-SNAPSHOT' for a snapshot of
0 commit comments