File tree 1 file changed +12
-6
lines changed
1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -11,17 +11,23 @@ See the `image deform demo`.
11
11
## Gradle dependency
12
12
13
13
``` gradle
14
- repositories {
15
- jcenter()
14
+ allprojects {
15
+ repositories {
16
+ maven {
17
+ // Use github hosted maven repo for now.
18
+ // Will be uploaded to maven central later.
19
+ url 'https://maven.wysaid.org/'
20
+ }
21
+ }
16
22
}
17
23
18
24
//Choose only one of them
19
25
dependencies {
20
- //All arch: armeabi, armeabi -v7a, arm64-v8a, x86
21
- compile 'org.wysaid:gpuimage-plus:2.6.3 '
26
+ //All arch: armeabi-v7a, arm64-v8a, x86, x86_64 with video module (ffmpeg bundled)
27
+ implementation 'org.wysaid:gpuimage-plus:3.0.0 '
22
28
23
- //Pure graphics lib without ffmpeg. (all arch for branch 'min' )
24
- compile 'org.wysaid:gpuimage-plus:2.6.3 -min'
29
+ //All arch: armeabi-v7a, arm64-v8a, x86, x86_64 without video module (no ffmpeg )
30
+ implementation 'org.wysaid:gpuimage-plus:3.0.0 -min'
25
31
}
26
32
```
27
33
You can’t perform that action at this time.
0 commit comments