Skip to content

Commit 61beec3

Browse files
committed
update gradle deps, using github hosted maven repo.(And the MavenCentral version is coming soon.)
1 parent e7df0ce commit 61beec3

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

README.md

+12-6
Original file line numberDiff line numberDiff 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
1925
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'
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

0 commit comments

Comments
 (0)