File tree 3 files changed +15
-2
lines changed
3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ repositories {
32
32
```
33
33
34
34
``` groovy
35
- implementation 'com.github.awxkee:avif-coder:1.0.19 ' // or any version above picker from release tags
35
+ implementation 'com.github.awxkee:avif-coder:1.0.20 ' // or any version above picker from release tags
36
36
```
37
37
38
38
# Also supports coil integration
Original file line number Diff line number Diff line change 3
3
4
4
# Sets the minimum version of CMake required to build the native library.
5
5
6
- cmake_minimum_required (VERSION 3.18 .1)
6
+ cmake_minimum_required (VERSION 3.22 .1)
7
7
8
8
# Declares and names the project.
9
9
Original file line number Diff line number Diff line change 3
3
plugins {
4
4
id(" com.android.library" )
5
5
id(" org.jetbrains.kotlin.android" )
6
+ id(" maven-publish" )
6
7
}
7
8
9
+ afterEvaluate {
10
+ publishing {
11
+ publications {
12
+ create<MavenPublication >(" mavenJava" ) {
13
+ groupId = " com.github.awxkee"
14
+ artifactId = " avif-coder"
15
+ version = " 1.0.20"
16
+ from(components[" release" ])
17
+ }
18
+ }
19
+ }
20
+ }
8
21
9
22
android {
10
23
namespace = " com.github.awxkee.avifcoder"
You can’t perform that action at this time.
0 commit comments