File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Expand file tree Collapse file tree 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`.
1111## Gradle dependency
1212
1313``` 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+ }
1622}
1723
1824//Choose only one of them
1925dependencies {
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 '
2228
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'
2531}
2632```
2733
You can’t perform that action at this time.
0 commit comments