From 61beec3aa422804356ca18b11d71e6921bb36791 Mon Sep 17 00:00:00 2001 From: wysaid Date: Tue, 1 Aug 2023 02:30:08 +0800 Subject: [PATCH] update gradle deps, using github hosted maven repo.(And the MavenCentral version is coming soon.) --- README.md | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 40a2fe19..da6d5219 100644 --- a/README.md +++ b/README.md @@ -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' } ```