diff --git a/README.md b/README.md index e61057a..6103429 100644 --- a/README.md +++ b/README.md @@ -32,11 +32,11 @@ Using FSD ##### Dependencies ```groovy dependencies { - implementation 'com.github.jeffreyliu8.Native-Floyd-Steinberg-Dithering:final:1.1.1' + implementation 'com.github.jeffreyliu8.Native-Floyd-Steinberg-Dithering:final:1.1.2' } ``` -The last working version is compile 'com.github.jeffreyliu8.Native-Floyd-Steinberg-Dithering:final:1.1.0'. +The last working version is compile 'com.github.jeffreyliu8.Native-Floyd-Steinberg-Dithering:final:1.1.1'. A quick example is shown below: diff --git a/app/build.gradle b/app/build.gradle index 1e5ba49..7248e99 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -48,5 +48,5 @@ dependencies { androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.4.0' // implementation project(":floydsteinbergdithering") - implementation 'com.github.jeffreyliu8.Native-Floyd-Steinberg-Dithering:final:1.1.1' + implementation 'com.github.jeffreyliu8.Native-Floyd-Steinberg-Dithering:final:1.1.2' } diff --git a/floydsteinbergdithering/build.gradle b/floydsteinbergdithering/build.gradle index 19125bd..aa06b4b 100644 --- a/floydsteinbergdithering/build.gradle +++ b/floydsteinbergdithering/build.gradle @@ -43,8 +43,8 @@ afterEvaluate { // You can then customize attributes of the publication as shown below. groupId = 'com.github.jeffreyliu8' - artifactId = 'final' - version = '1.1.2' + artifactId = 'release' + version = '1.1.3' } // Creates a Maven publication called “debug”. debug(MavenPublication) { @@ -52,8 +52,8 @@ afterEvaluate { from components.debug groupId = 'com.github.jeffreyliu8' - artifactId = 'final-debug' - version = '1.1.2' + artifactId = 'debug' + version = '1.1.3' } } }