Skip to content

Commit

Permalink
update gradle deps, using github hosted maven repo.(And the MavenCent…
Browse files Browse the repository at this point in the history
…ral version is coming soon.)
  • Loading branch information
wysaid committed Jul 31, 2023
1 parent e7df0ce commit fb69c85
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,23 @@ See the `image deform demo`.
## Gradle dependency

```gradle
repositories {
jcenter()
allprojects {
repositories {
maven {
# Use github hosted maven repo for now.
# Will be uploaded to maven central later.
url 'https://maven.wysaid.org/'
}
}
}
//Choose only one of them
dependencies {
//All arch: armeabi, armeabi-v7a, arm64-v8a, x86
compile 'org.wysaid:gpuimage-plus:2.6.3'
//All arch: armeabi-v7a, arm64-v8a, x86, x86_64 with video module (ffmpeg bundled)
implementation 'org.wysaid:gpuimage-plus:3.0.0'
//Pure graphics lib without ffmpeg. (all arch for branch 'min')
compile 'org.wysaid:gpuimage-plus:2.6.3-min'
//All arch: armeabi-v7a, arm64-v8a, x86, x86_64 without video module (no ffmpeg)
implementation 'org.wysaid:gpuimage-plus:3.0.0-min'
}
```

Expand Down

0 comments on commit fb69c85

Please sign in to comment.